Welcome to mirror list, hosted at ThFree Co, Russian Federation.

latex.yml « workflows « .github - github.com/sphinx-doc/sphinx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e5d9930c6fae48f71ea53f6c4ce5a7cdd873aa05 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
name: CI (LaTeX)

on: [push, pull_request]

permissions:
  contents: read

jobs:
  test:
    runs-on: ubuntu-18.04
    name: Test on LaTeX image
    container:
      image: ghcr.io/sphinx-doc/sphinx-ci
    env:
      DO_EPUBCHECK: 1
    steps:
    - name: Alias python3 to python
      run: ln -s /usr/bin/python3 /usr/bin/python
    - 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