diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2021-06-15 20:56:06 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2021-06-15 20:56:06 +0300 |
commit | e470a5b5acc8a9234c199d235f321ef9efa47f81 (patch) | |
tree | e7f2712ff20d11333d91b9884c22183238e38d7f /.github/workflows/test.yml | |
parent | v1.0.1 (diff) | |
download | vk-scripts-e470a5b5acc8a9234c199d235f321ef9efa47f81.tar.gz vk-scripts-e470a5b5acc8a9234c199d235f321ef9efa47f81.zip |
workflows/test: use ubuntu-latest
Diffstat (limited to '.github/workflows/test.yml')
-rw-r--r-- | .github/workflows/test.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 3d500a4..a8bc07e 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -17,7 +17,7 @@ jobs: strategy: matrix: python-version: [3.4, 3.5, 3.6, 3.7, 3.8, 3.9, 3.x] - runs-on: ubuntu-18.04 + runs-on: ubuntu-latest name: 'Python ${{ matrix.python-version }}' steps: - name: Checkout @@ -33,7 +33,7 @@ jobs: publish_pypi: needs: [test] - runs-on: ubuntu-18.04 + runs-on: ubuntu-latest name: Publish steps: - name: Checkout |