Skip to content

Commit

Permalink
tests: update setup
Browse files Browse the repository at this point in the history
  • Loading branch information
adbar committed Nov 15, 2022
1 parent c58b390 commit 719e4a9
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,24 +17,24 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest]
python-version: [3.6, 3.7, 3.8, 3.9, "3.10"]
python-version: [3.6, 3.7, 3.8, 3.9, "3.10", "3.11"]
env: [{ MINIMAL: "true" }, { MINIMAL: "false" }]
include:
# custom tests
- python-version: "3.11-dev"
- python-version: "3.12-dev"
os: ubuntu-latest
experimental: true
allowed_failure: true
- os: macos-latest
python-version: 3.7
python-version: 3.8
- os: windows-latest
python-version: 3.7
python-version: 3.8
experimental: true
allowed_failure: true
steps:
# Python and pip setup
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}

Expand Down Expand Up @@ -73,7 +73,7 @@ jobs:
# optional, just for certain versions
- name: Install LXML dependencies
if: ${{ matrix.python-version == '3.11-dev' }}
if: ${{ matrix.python-version == '3.12-dev' }}
run: sudo apt-get install libxml2-dev libxslt-dev

- name: Install dependencies
Expand All @@ -96,7 +96,7 @@ jobs:
# coverage
- name: Upload coverage to Codecov
if: ${{ matrix.env.MINIMAL == 'false'}}
uses: codecov/codecov-action@v2
uses: codecov/codecov-action@v3
with:
fail_ci_if_error: true
files: ./coverage.xml
Expand Down

0 comments on commit 719e4a9

Please sign in to comment.