mirror of
https://github.com/dh1tw/pyhamtools.git
synced 2025-12-06 06:52:00 +01:00
added python 3.10 and 3.11 to CI
This commit is contained in:
parent
094db34159
commit
ebdf0c9707
|
|
@ -20,15 +20,19 @@ environment:
|
||||||
PYTHON_ARCH: "32"
|
PYTHON_ARCH: "32"
|
||||||
|
|
||||||
- PYTHON: "C:\\Python38"
|
- PYTHON: "C:\\Python38"
|
||||||
PYTHON_VERSION: "3.8.7"
|
PYTHON_VERSION: "3.8.15"
|
||||||
PYTHON_ARCH: "32"
|
PYTHON_ARCH: "32"
|
||||||
|
|
||||||
- PYTHON: "C:\\Python39"
|
- PYTHON: "C:\\Python39"
|
||||||
PYTHON_VERSION: "3.9.1"
|
PYTHON_VERSION: "3.9.15"
|
||||||
PYTHON_ARCH: "32"
|
PYTHON_ARCH: "64"
|
||||||
|
|
||||||
- PYTHON: "C:\\Python39"
|
- PYTHON: "C:\\Python310"
|
||||||
PYTHON_VERSION: "3.9.1"
|
PYTHON_VERSION: "3.10.7"
|
||||||
|
PYTHON_ARCH: "64"
|
||||||
|
|
||||||
|
- PYTHON: "C:\\Python311"
|
||||||
|
PYTHON_VERSION: "3.11.0"
|
||||||
PYTHON_ARCH: "64"
|
PYTHON_ARCH: "64"
|
||||||
|
|
||||||
init:
|
init:
|
||||||
|
|
|
||||||
6
.github/workflows/test.yml
vendored
6
.github/workflows/test.yml
vendored
|
|
@ -11,7 +11,7 @@ jobs:
|
||||||
|
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
python-version: ["2.7", "3.5", "3.6", "3.7", "3.8", "3.9", "3.10", "pypy2"]
|
python-version: ["2.7", "3.5", "3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "pypy2"]
|
||||||
redis-version: [6]
|
redis-version: [6]
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
|
|
@ -45,8 +45,8 @@ jobs:
|
||||||
run: |
|
run: |
|
||||||
sleep $[ ( $RANDOM % 20 ) + 1 ]s
|
sleep $[ ( $RANDOM % 20 ) + 1 ]s
|
||||||
pytest --cov=./
|
pytest --cov=./
|
||||||
if [[ $PYTHON_VERSION == 3.10 ]]; then codecov; fi
|
if [[ $PYTHON_VERSION == 3.11 ]]; then codecov; fi
|
||||||
if [[ $PYTHON_VERSION == 3.10 ]]; then cd docs && make html; fi
|
if [[ $PYTHON_VERSION == 3.11 ]]; then cd docs && make html; fi
|
||||||
|
|
||||||
# publish_package:
|
# publish_package:
|
||||||
# runs-on: "ubuntu-latest"
|
# runs-on: "ubuntu-latest"
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue