diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2022-12-07 15:32:18 +0100 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2022-12-07 15:32:18 +0100 |
commit | e0ce3b6e91b6c83808028c6051549fc7b8b38ef8 (patch) | |
tree | 39f4990e62dee3d248d44d8f70d0003675a4f940 /.github/workflows/ci.yml | |
parent | fix preludes in bash scripts (diff) | |
download | void-e0ce3b6e91b6c83808028c6051549fc7b8b38ef8.tar.gz void-e0ce3b6e91b6c83808028c6051549fc7b8b38ef8.zip |
workflows/ci: fix Python 3.6 tests
Diffstat (limited to '.github/workflows/ci.yml')
-rw-r--r-- | .github/workflows/ci.yml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4b98a8e..e817690 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -10,7 +10,9 @@ jobs: strategy: matrix: python-version: ['3.6', '3.7', '3.8', '3.9', '3.10'] - runs-on: ubuntu-latest + # Unpin when this is fixed: + # https://github.com/actions/setup-python/issues/544 + runs-on: ubuntu-20.04 name: 'Python ${{ matrix.python-version }}' steps: - name: Checkout |