diff options
author | 2021-03-03 00:49:24 -0700 | |
---|---|---|
committer | 2021-03-03 00:57:56 -0700 | |
commit | 8145173d0b0423066055c1c88dcb03f4914576cc (patch) | |
tree | a05803cd25a2fa48dcd8326a44c2a91871a20a1d /.github | |
parent | github: simplify workflow names (diff) | |
download | snakeoil-8145173d0b0423066055c1c88dcb03f4914576cc.tar.gz snakeoil-8145173d0b0423066055c1c88dcb03f4914576cc.tar.bz2 snakeoil-8145173d0b0423066055c1c88dcb03f4914576cc.zip |
github: add experimental python 3.10 build
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/test.yml | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index b7eb4cc3..96cdc330 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -9,10 +9,14 @@ on: jobs: build: runs-on: ubuntu-latest + continue-on-error: ${{ matrix.experimental }} strategy: - max-parallel: 4 matrix: - python-version: [3.8, 3.9] + python-version: ['3.8', '3.9'] + experimental: [false] + include: + - python-version: '3.10.0-alpha - 3.10.0' + experimental: true steps: - name: Checkout code |