Skip to content

Commit 96ccb32

Browse files
committed
CI: Update
1 parent 6762bdc commit 96ccb32

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

.github/workflows/macos.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,17 +12,22 @@ jobs:
1212
runs-on: macos-latest
1313
if: github.event.pull_request.draft == false
1414
steps:
15-
- uses: actions/checkout@v2
15+
- uses: actions/checkout@v4
1616

1717
- name: Dependencies
1818
run: |
19+
python3 -m venv py-venv
20+
source py-venv/bin/activate
21+
1922
python3 -m pip install --upgrade pyflakes
2023
python3 -m pip install --upgrade -r requirements.txt
2124
2225
python3 -m pyflakes openpmd_validator
2326
2427
- name: Test
2528
run: |
29+
source py-venv/bin/activate
30+
2631
python3 -m pip install .
2732
openPMD_createExamples_h5
2833
openPMD_check_h5 -i example.h5 --EDPIC

.github/workflows/ubuntu.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
if: github.event.pull_request.draft == false
1414
steps:
15-
- uses: actions/checkout@v2
15+
- uses: actions/checkout@v4
1616

1717
- name: Dependencies
1818
run: |

.github/workflows/windows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: windows-latest
1313
if: github.event.pull_request.draft == false
1414
steps:
15-
- uses: actions/checkout@v2
15+
- uses: actions/checkout@v4
1616

1717
- name: Dependencies
1818
run: |

0 commit comments

Comments
 (0)