diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2021-06-15 23:19:45 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2021-06-15 23:19:45 +0300 |
commit | 77ab1c510b407109019712f572a31338405704b8 (patch) | |
tree | 8c1d19e463315b32b7b2cee423cfb1e66f87726a | |
parent | workflows/test: use ubuntu-latest (diff) | |
download | vk-scripts-77ab1c510b407109019712f572a31338405704b8.tar.gz vk-scripts-77ab1c510b407109019712f572a31338405704b8.zip |
workflows/test: switch back to ubuntu-18.04
-rw-r--r-- | .github/workflows/test.yml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index a8bc07e..a57d1e2 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -17,7 +17,8 @@ jobs: strategy: matrix: python-version: [3.4, 3.5, 3.6, 3.7, 3.8, 3.9, 3.x] - runs-on: ubuntu-latest + # 3.4 is not available on Focal. + runs-on: ubuntu-18.04 name: 'Python ${{ matrix.python-version }}' steps: - name: Checkout |