Skip to content

Commit

Permalink
CI: Move LaTeX job to GitHub Actions (sphinx-doc#10884)
Browse files Browse the repository at this point in the history
Co-authored-by: Adam Turner <9087854+AA-Turner@users.noreply.github.com>
  • Loading branch information
2 people authored and marxin committed Oct 2, 2022
1 parent c65b55e commit 1479999
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 16 deletions.
16 changes: 0 additions & 16 deletions .circleci/config.yml

This file was deleted.

24 changes: 24 additions & 0 deletions .github/workflows/latex.yml
@@ -0,0 +1,24 @@
name: CI (LaTeX)

on: [push, pull_request]

permissions:
contents: read

jobs:
build:
runs-on: ubuntu-18.04
name: Python 3.8
container:
image: sphinxdoc/docker-ci
env:
DO_EPUBCHECK: 1
PATH: /python3.8/bin/:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
steps:
- uses: actions/checkout@v3
- name: Check Python version
run: python --version
- name: Install dependencies
run: pip install -U pip tox
- name: Run Tox
run: tox -e py -- -vv

0 comments on commit 1479999

Please sign in to comment.