diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2021-06-15 20:32:37 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2021-06-15 20:32:37 +0300 |
commit | 642385736a2b83e8e3d42fa76a81d84b7d0b1069 (patch) | |
tree | ea2cf6c7a34d8125f7d4c421e8dfa461e3840874 /.github/workflows/test.yml | |
parent | workflows/test: test w/ latest Python (diff) | |
download | cgitize-642385736a2b83e8e3d42fa76a81d84b7d0b1069.tar.gz cgitize-642385736a2b83e8e3d42fa76a81d84b7d0b1069.zip |
workflows/test: use ubuntu-latest
Diffstat (limited to '.github/workflows/test.yml')
-rw-r--r-- | .github/workflows/test.yml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 3d35be0..4a848aa 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -7,7 +7,7 @@ on: jobs: test_local: - runs-on: ubuntu-18.04 + runs-on: ubuntu-latest strategy: matrix: python-version: [3.6, 3.7, 3.8, 3.9, 3.x] @@ -27,7 +27,7 @@ jobs: run: ./.ci/local/test.sh test_docker: - runs-on: ubuntu-18.04 + runs-on: ubuntu-latest name: 'Test: Docker' steps: - name: Checkout @@ -37,7 +37,7 @@ jobs: publish_docker: needs: [test_local, test_docker] - runs-on: ubuntu-18.04 + runs-on: ubuntu-latest name: 'Publish: Docker Hub' if: github.event_name == 'push' && (github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/tags')) steps: @@ -59,7 +59,7 @@ jobs: publish_pypi: needs: [test_local, test_docker] - runs-on: ubuntu-18.04 + runs-on: ubuntu-latest name: 'Publish: PyPI' steps: - name: Checkout |