File tree Expand file tree Collapse file tree 3 files changed +8
-3
lines changed Expand file tree Collapse file tree 3 files changed +8
-3
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 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 : |
Original file line number Diff line number Diff line change 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 : |
You can’t perform that action at this time.
0 commit comments