Skip to content

Commit

Permalink
Update CI workflow
Browse files Browse the repository at this point in the history
  - Add testing with Python 3.12b4 (skip flake8 test)
  - Use PyPy 3.9, remove PyPy 3.8
  • Loading branch information
brunato committed Jul 26, 2023
1 parent 55811b4 commit 8c81cb6
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/test-xmlschema.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: [3.7, 3.8, 3.9, "3.10", "3.11", "pypy-3.8"]
python-version: [3.7, 3.8, 3.9, "3.10", 3.11, 3.12.0-beta.4, pypy-3.9]
exclude:
- os: macos-latest
python-version: 3.7
Expand All @@ -40,7 +40,8 @@ jobs:
pip install lxml jinja2
pip install .
python -m unittest
- name: Lint with flake8
- name: Lint with flake8 if Python version != 3.12b4
if: ${{ matrix.python-version != '3.12.0-beta.4' }}
run: |
pip install flake8
flake8 xmlschema --max-line-length=100 --statistics
Expand Down

0 comments on commit 8c81cb6

Please sign in to comment.