Skip to content

Commit

Permalink
Add Python 3.9 and 3.12 to test GitHub Actions
Browse files Browse the repository at this point in the history
also enable deprecation warnings
  • Loading branch information
xxyzz committed Oct 7, 2023
1 parent 5648517 commit bcb8525
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.10', '3.11']
python-version: ['3.9', '3.10', '3.11', '3.12']
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
Expand All @@ -31,10 +31,12 @@ jobs:
python -m pip install -U pip
python -m pip install --use-pep517 '.[dev]'
- run: make test
env:
PYTHONWARNINGS: default
- name: Remove huge file taxondata_py.html
run: rm -f htmlcov/*_taxondata_py.html
- uses: actions/upload-pages-artifact@v2
if: github.ref_name == 'master' && matrix.python-version == '3.11'
if: github.ref_name == 'master' && matrix.python-version == '3.12'
with:
path: htmlcov

Expand Down

0 comments on commit bcb8525

Please sign in to comment.