Commit b61de2e6 by Branch Vincent Committed by Bjorn Neergaard

ci: test all platforms on py3.10

parent aaf88062
...@@ -9,6 +9,7 @@ test_task: ...@@ -9,6 +9,7 @@ test_task:
matrix: matrix:
- PYTHON: python3.8 - PYTHON: python3.8
- PYTHON: python3.9 - PYTHON: python3.9
- PYTHON: python3.10
pkg_script: pkg_script:
- PYPACKAGE=$(printf '%s' $PYTHON | tr -d '.') - PYPACKAGE=$(printf '%s' $PYTHON | tr -d '.')
- SQLPACKAGE=$(printf '%s-sqlite3' $PYPACKAGE | sed 's/thon//') - SQLPACKAGE=$(printf '%s-sqlite3' $PYPACKAGE | sed 's/thon//')
......
...@@ -17,20 +17,27 @@ on: ...@@ -17,20 +17,27 @@ on:
jobs: jobs:
tests: tests:
name: ${{ matrix.os }} / ${{ matrix.python-version }} name: ${{ matrix.os }} / ${{ matrix.python-version }} ${{ matrix.suffix }}
runs-on: ${{ matrix.os }}-latest runs-on: ${{ matrix.os }}-latest
continue-on-error: ${{ matrix.experimental }} continue-on-error: ${{ matrix.experimental }}
strategy: strategy:
matrix: matrix:
os: [Ubuntu, MacOS, Windows] 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] experimental: [false]
bootstrap-args: [""] bootstrap-args: [""]
suffix: [""]
include: include:
- os: Ubuntu - os: Ubuntu
python-version: "3.10.0-alpha - 3.10.0" python-version: "3.10"
experimental: true experimental: true
bootstrap-args: "--git https://github.com/python-poetry/poetry.git" 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 fail-fast: false
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
......
...@@ -32,6 +32,6 @@ jobs: ...@@ -32,6 +32,6 @@ jobs:
strategy: strategy:
matrix: matrix:
os: [Ubuntu, MacOS, Windows] 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: steps:
- run: exit 0 - run: exit 0
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment