diff options
| author | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2020-11-05 01:54:23 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-11-05 01:54:23 +0900 |
| commit | e1e0106aa461834e991b462e22f8edbe3bb8f850 (patch) | |
| tree | bc2a5b6dd3a10b91fde9317dfd2c5924fec0b434 /.github | |
| parent | 2da6de67219ed86acf0e0835b5330ee3269b5011 (diff) | |
| parent | 0cf1632edf8e4f16796b4324be7de11b99853734 (diff) | |
| download | sphinx-git-4606_incorrect_location_of_docstring.tar.gz | |
Merge branch '3.x' into 4606_incorrect_location_of_docstring4606_incorrect_location_of_docstring
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/main.yml | 36 |
1 files changed, 34 insertions, 2 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 7acfef6d2..a85e3c8fb 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -1,9 +1,41 @@ -name: CI on Windows +name: CI on: [push, pull_request] jobs: - build: + ubuntu: + runs-on: ubuntu-16.04 + strategy: + fail-fast: false + matrix: + name: [py35, py36, py37] + include: + - name: py35 + python: 3.5 + docutils: du12 + - name: py36 + python: 3.6 + docutils: du13 + - name: py37 + python: 3.7 + docutils: du14 + + steps: + - uses: actions/checkout@v2 + - name: Set up Python ${{ matrix.python }} + uses: actions/setup-python@v2 + with: + python-version: ${{ matrix.python }} + - name: Check Python version + run: python --version + - name: Install graphviz + run: sudo apt-get install graphviz + - name: Install dependencies + run: pip install -U tox + - name: Run Tox + run: tox -e ${{ matrix.docutils }} -- -vv + + windows: runs-on: windows-latest strategy: matrix: |
