Skip to content

Commit

Permalink
ci: test all platforms on py3.10
Browse files Browse the repository at this point in the history
  • Loading branch information
branchvincent authored and 1nF0rmed committed Nov 15, 2021
1 parent 9e6b345 commit e833fad
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 4 deletions.
1 change: 1 addition & 0 deletions .cirrus.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ test_task:
matrix:
- PYTHON: python3.8
- PYTHON: python3.9
- PYTHON: python3.10
pkg_script:
- PYPACKAGE=$(printf '%s' $PYTHON | tr -d '.')
- SQLPACKAGE=$(printf '%s-sqlite3' $PYPACKAGE | sed 's/thon//')
Expand Down
13 changes: 10 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,20 +17,27 @@ on:

jobs:
tests:
name: ${{ matrix.os }} / ${{ matrix.python-version }}
name: ${{ matrix.os }} / ${{ matrix.python-version }} ${{ matrix.suffix }}
runs-on: ${{ matrix.os }}-latest
continue-on-error: ${{ matrix.experimental }}
strategy:
matrix:
os: [Ubuntu, MacOS, Windows]
python-version: [3.6, 3.7, 3.8, 3.9]
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10"]
experimental: [false]
bootstrap-args: [""]
suffix: [""]
include:
- os: Ubuntu
python-version: "3.10.0-alpha - 3.10.0"
python-version: "3.10"
experimental: true
bootstrap-args: "--git https://github.com/python-poetry/poetry.git"
suffix: (HEAD)
- os: Ubuntu
python-version: "3.11-dev"
experimental: true
bootstrap-args: "--git https://github.com/python-poetry/poetry.git"
suffix: (HEAD)
fail-fast: false
steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/skip.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,6 @@ jobs:
strategy:
matrix:
os: [Ubuntu, MacOS, Windows]
python-version: [3.6, 3.7, 3.8, 3.9]
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10"]
steps:
- run: exit 0

0 comments on commit e833fad

Please sign in to comment.