We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents e7e4005 + 0659d62 commit a669734Copy full SHA for a669734
.github/workflows/tests.yml
@@ -29,13 +29,17 @@ jobs:
29
run: ruff format --check
30
31
test:
32
- runs-on: ubuntu-latest
+ strategy:
33
+ matrix:
34
+ os: [ubuntu-latest, macos-latest, windows-latest]
35
+ python-version: ["3.10", "3.11", "3.12"]
36
+ runs-on: ${{ matrix.os }}
37
steps:
38
- uses: actions/checkout@v4
39
- name: Set up Python ${{ matrix.python-version }}
40
uses: actions/setup-python@v5
41
with:
- python-version: "3.11"
42
+ python-version: ${{ matrix.python-version }}
43
- name: Install dependencies
44
run: python -m pip install -r requirements/required.txt -r requirements/test.txt
45
- name: Test with pytest
0 commit comments