Mercurial > p > roundup > code
diff .github/workflows/ci-test.yml @ 6889:43a1a3404e42
more tests for ubuntu-22.04 and 3.11-dev rather than explicit ver
| author | John Rouillard <rouilj@ieee.org> |
|---|---|
| date | Thu, 01 Sep 2022 14:05:29 -0400 |
| parents | f4705aba3503 |
| children | 8fdd8f72c333 |
line wrap: on
line diff
--- a/.github/workflows/ci-test.yml Thu Sep 01 13:43:35 2022 -0400 +++ b/.github/workflows/ci-test.yml Thu Sep 01 14:05:29 2022 -0400 @@ -24,7 +24,8 @@ max-parallel: 4 matrix: # Run in all these versions of Python - python-version: [ "2.7", "3.10", "3.9", "3.8", "3.6", "3.11.0-rc.1" ] + python-version: [ "3.10", "3.11-dev" ] + # python-version: [ "2.7", "3.10", "3.9", "3.8", "3.6", "3.11-dev" ] # use for multiple os or ubuntu versions #os: [ubuntu-latest, macos-latest, windows-latest] # if the ones above fail. fail the build @@ -33,7 +34,10 @@ # example: if 3.12 fails the jobs still succeeds # - python-version: 3.12 # experimental: true - - python-version: [ "3.10", "3.8" ] + - python-version: "3.10" + runs-on: ubuntu-22.04 + experimental: true + - python-version: "3.11-dev" runs-on: ubuntu-22.04 experimental: true
