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 a474201 commit 5207170Copy full SHA for 5207170
.github/workflows/testing.yml
@@ -22,7 +22,7 @@ jobs:
22
strategy:
23
fail-fast: false # Probably want to turn this off for a large matrix
24
matrix:
25
- os: [ubuntu-latest] #, macos-latest]
+ os: [ubuntu-latest, macos-latest]
26
python-version: [3.12]
27
build: [optimized]
28
toolchain:
@@ -34,11 +34,13 @@ jobs:
34
# - {compiler: lfortran, version: '0.45.0'} # Does not work with meson
35
include:
36
- os: ubuntu-latest
37
- build: [optimized, debug]
38
- python-version: [3.8, 3.12]
+ build: debug
+ python-version: 3.8
39
exclude:
40
41
toolchain: {compiler: gcc, version: 15}
42
+ - os: macos-latest
43
+ toolchain: {compiler: gcc, version: 14}
44
45
steps:
46
- name: Set up Python ${{ matrix.python-version }}
0 commit comments