diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2023-01-02 06:49:42 +0100 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2023-01-02 06:49:42 +0100 |
commit | 3c58abd307d69bdc95ae1a3bd2be0b2b8ad3c7f2 (patch) | |
tree | 9e51f570a9333219d609edd610dbcd52167f43b0 /.github/workflows | |
parent | workflows: actualize runner OSes (diff) | |
download | cmake-common-3c58abd307d69bdc95ae1a3bd2be0b2b8ad3c7f2.tar.gz cmake-common-3c58abd307d69bdc95ae1a3bd2be0b2b8ad3c7f2.zip |
workflows/basic: fix Python 3.6 tests
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/basic.yml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/.github/workflows/basic.yml b/.github/workflows/basic.yml index 9e8fd22..2396100 100644 --- a/.github/workflows/basic.yml +++ b/.github/workflows/basic.yml @@ -60,7 +60,9 @@ jobs: matrix: python-version: [3.6, 3.7, 3.8, 3.9, 3.x] include: - - os: ubuntu-latest + # Unpin when this is fixed: + # https://github.com/actions/setup-python/issues/544 + - os: ubuntu-20.04 - boost-version: 1.78.0 runs-on: '${{ matrix.os }}' name: 'Python ${{ matrix.python-version }}' |