diff options
author | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2020-11-10 23:42:53 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-10 23:42:53 +0900 |
commit | 859b5fcea71f8d4f46e0ef3726e68df54bfbc3b7 (patch) | |
tree | 474774944448ae7d82532e5f196e13494389c736 | |
parent | 1254b8011347b309af122dbe91a9439cc56f4381 (diff) | |
parent | 5533724d74a09060ff8cc07078f82cedc8a947ac (diff) | |
download | sphinx-git-859b5fcea71f8d4f46e0ef3726e68df54bfbc3b7.tar.gz |
Merge pull request #8402 from tk0miya/test_with_ubuntu18.04
Do test with Ubuntu 18.04
-rw-r--r-- | .github/workflows/main.yml | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 9e4dd2ade..a63a76a7f 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -4,12 +4,11 @@ on: [push, pull_request] jobs: ubuntu: - runs-on: ${{ matrix.os }} + runs-on: ubuntu-18.04 strategy: fail-fast: false matrix: - name: [py36, py37, py38, py39] - os: [ubuntu-16.04] + name: [py36, py37, py38, py39, py310-dev] include: - name: py36 python: 3.6 @@ -27,7 +26,6 @@ jobs: - name: py310-dev python: 3.10-dev docutils: du16 - os: ubuntu-latest # required env: PYTEST_ADDOPTS: ${{ matrix.coverage }} |