-
-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add 3.12 to CI * Update .github/workflows/actions.yml * Add 3.13 as well * 3.13 does not exist yet
- Loading branch information
Showing
2 changed files
with
11 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 |
---|---|---|
|
@@ -36,22 +36,28 @@ jobs: | |
run: make isort-check | ||
|
||
test: | ||
name: Test with Python ${{ matrix.python-version }} | ||
name: Test with Python ${{ matrix.python.version }} | ||
needs: lint | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
python-version: [3.8, 3.9, "3.10", "3.11"] | ||
python: | ||
- version: "3.8" | ||
- version: "3.9" | ||
- version: "3.10" | ||
- version: "3.11" | ||
- version: "3.12" | ||
steps: | ||
- name: 📥 Checkout the repository | ||
uses: actions/[email protected] | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: 🛠️ Set up Python ${{ matrix.python-version }} | ||
- name: 🛠️ Set up Python ${{ matrix.python.version }} | ||
uses: actions/[email protected] | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
python-version: ${{ matrix.python.version }} | ||
allow-prereleases: ${{ matrix.python.prereleases || false }} | ||
|
||
- name: 📦 Install dependencies | ||
run: make requirements | ||
|
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