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 da8b793 commit 3fde348Copy full SHA for 3fde348
.github/workflows/code.yml
@@ -10,14 +10,20 @@ jobs:
10
strategy:
11
fail-fast: false
12
matrix:
13
- os: ["ubuntu-latest"] # can add windows-latest, macos-latest
14
- python: ["3.9", "3.10", "3.11", "3.12"]
15
- install: ["-e .[dev]"]
+ # os: ["ubuntu-latest"] # can add windows-latest, macos-latest
+ # python: ["3.9", "3.10", "3.11", "3.12"]
+ # install: ["-e .[dev]"]
16
# Make one version be non-editable to test both paths of version code
17
include:
18
- os: "ubuntu-latest"
19
python: "3.8"
20
install: ".[dev]"
21
+ - os: "ubuntu-latest-arm"
22
+ python: "3.12"
23
+ install: ".[dev]"
24
+ - os: "macos-latest"
25
26
27
28
runs-on: ${{ matrix.os }}
29
container:
0 commit comments