diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2023-11-26 01:28:08 +0100 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2023-11-26 01:29:12 +0100 |
commit | 6602daf6168659ad134713814a04bc11208ad48b (patch) | |
tree | d2af82abf22cd922ff852041b6b6747843bc82b6 /.github/workflows/ci.yml | |
parent | switch to tensin.name (diff) | |
download | sorting-algorithms-6602daf6168659ad134713814a04bc11208ad48b.tar.gz sorting-algorithms-6602daf6168659ad134713814a04bc11208ad48b.zip |
workflows/ci: Bionic is no more
Diffstat (limited to '')
-rw-r--r-- | .github/workflows/ci.yml | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 888b4ba..7e58424 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -9,9 +9,8 @@ jobs: test: strategy: matrix: - python-version: [3.4, 3.5, 3.6, 3.7, 3.8, 3.9, 3.x] - # 3.4 is not available on Focal. - runs-on: ubuntu-18.04 + python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', 3.x] + runs-on: ubuntu-latest name: 'Python ${{ matrix.python-version }}' env: PIP_DISABLE_PIP_VERSION_CHECK: 1 |