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 0bbb709 commit c00b276Copy full SHA for c00b276
.github/workflows/ci.yml
@@ -17,10 +17,17 @@ jobs:
17
- uses: pre-commit/[email protected]
18
test:
19
name: Test
20
- runs-on: ubuntu-latest
+ runs-on: ${{ matrix.os }}
21
strategy:
22
matrix:
23
+ # Use macos-13 because pip binary packages for ARM aren't
24
+ # available for many dependencies
25
+ os: [macos-13, ubuntu-latest]
26
python-version: ["3.9", "3.10", "3.11"]
27
+ exclude:
28
+ # Just run macos tests on one Python version
29
+ - os: macos-13
30
+ python-version: "3.9"
31
steps:
32
- uses: actions/checkout@v4
33
- name: Set up Python ${{ matrix.python-version }}
0 commit comments