-
-
Notifications
You must be signed in to change notification settings - Fork 108
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
8 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,23 +9,26 @@ jobs: | |
max-parallel: 8 | ||
matrix: | ||
os: [ubuntu-20.04, ubuntu-22.04, macos-12] | ||
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"] | ||
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"] | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-python@v4 | ||
with: | ||
python-version: ${{matrix.python-version}} | ||
- run: | | ||
if [[ $(uname) == Linux ]]; then sudo apt-get install --no-install-recommends python3-openssl python3-lxml; fi | ||
- run: make install | ||
- run: make lint | ||
- if: ${{matrix.python-version == '3.12'}} | ||
run: make lint | ||
- run: make test | ||
- uses: codecov/codecov-action@v3 | ||
black: | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- uses: psf/black@stable | ||
- uses: actions/checkout@v4 | ||
- uses: psf/black@stable | ||
isort: | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- uses: isort/[email protected] | ||
- uses: actions/checkout@v4 | ||
- uses: isort/[email protected] |