Skip to content

Commit 61b1c87

Browse files
authored
Merge pull request #81 from LEMS/test_mac14
Test on MacOS 14 also (will become default macos-latest soon)
2 parents df054b6 + 99336bc commit 61b1c87

File tree

3 files changed

+11
-8
lines changed

3 files changed

+11
-8
lines changed

.github/workflows/ci.yml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,16 @@ jobs:
1414
fail-fast: false
1515
matrix:
1616
python-version: ["3.9", "3.10", "3.11", "3.12"]
17-
runs-on: [ubuntu-latest, windows-latest, macos-latest]
17+
runs-on: [ubuntu-latest, windows-latest, macos-latest, macos-14]
18+
exclude:
19+
- runs-on: macos-14
20+
python-version: "3.9"
1821

1922
steps:
20-
- uses: actions/checkout@v3
23+
- uses: actions/checkout@v4
2124

2225
- name: Set up Python ${{ matrix.python-version }}
23-
uses: actions/setup-python@v4
26+
uses: actions/setup-python@v5
2427
with:
2528
python-version: ${{ matrix.python-version }}
2629

@@ -30,7 +33,7 @@ jobs:
3033
python -m pip install pytest pytest-cov
3134
3235
- name: Checkout NeuroML2
33-
uses: actions/checkout@v3
36+
uses: actions/checkout@v4
3437
with:
3538
repository: NeuroML/NeuroML2
3639
ref: development

.github/workflows/examples.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212

1313
steps:
14-
- uses: actions/checkout@v3
14+
- uses: actions/checkout@v4
1515
- uses: nelonoel/[email protected]
1616

1717
# https://stackoverflow.com/questions/58033366/how-to-get-current-branch-within-github-actions
@@ -21,7 +21,7 @@ jobs:
2121
id: extract_branch
2222

2323
- name: Checkout jlems
24-
uses: actions/checkout@v3
24+
uses: actions/checkout@v4
2525
with:
2626
repository: LEMS/jLEMS
2727
ref: ${{ steps.extract_branch.outputs.branch }}

.github/workflows/python-publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ jobs:
1818
runs-on: ubuntu-latest
1919

2020
steps:
21-
- uses: actions/checkout@v3
21+
- uses: actions/checkout@v4
2222
- name: Set up Python
23-
uses: actions/setup-python@v4
23+
uses: actions/setup-python@v5
2424
with:
2525
python-version: '3.x'
2626
- name: Install dependencies

0 commit comments

Comments
 (0)