We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8dd1514 commit a802ccbCopy full SHA for a802ccb
.github/workflows/test.yml
@@ -8,14 +8,18 @@ env:
8
jobs:
9
tests:
10
name: "Tests"
11
- runs-on: ubuntu-latest
+ runs-on: ${{ matrix.os }}
12
+ strategy:
13
+ fail-fast: false
14
+ matrix:
15
+ os: [macos-latest, ubuntu-latest]
16
steps:
17
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
18
with:
19
persist-credentials: false
20
- uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b # v5.3.0
21
- python-version: 3.x
22
+ python-version: 3.12
23
cache: pip
24
cache-dependency-path: dev-requirements.txt
25
- run: |
0 commit comments