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:
12
12
runs-on : macos-latest
13
13
if : github.event.pull_request.draft == false
14
14
steps :
15
- - uses : actions/checkout@v2
15
+ - uses : actions/checkout@v4
16
16
17
17
- name : Dependencies
18
18
run : |
19
+ python3 -m venv py-venv
20
+ source py-venv/bin/activate
21
+
19
22
python3 -m pip install --upgrade pyflakes
20
23
python3 -m pip install --upgrade -r requirements.txt
21
24
22
25
python3 -m pyflakes openpmd_validator
23
26
24
27
- name : Test
25
28
run : |
29
+ source py-venv/bin/activate
30
+
26
31
python3 -m pip install .
27
32
openPMD_createExamples_h5
28
33
openPMD_check_h5 -i example.h5 --EDPIC
Original file line number Diff line number Diff line change 12
12
runs-on : ubuntu-latest
13
13
if : github.event.pull_request.draft == false
14
14
steps :
15
- - uses : actions/checkout@v2
15
+ - uses : actions/checkout@v4
16
16
17
17
- name : Dependencies
18
18
run : |
Original file line number Diff line number Diff line change 12
12
runs-on : windows-latest
13
13
if : github.event.pull_request.draft == false
14
14
steps :
15
- - uses : actions/checkout@v2
15
+ - uses : actions/checkout@v4
16
16
17
17
- name : Dependencies
18
18
run : |
You can’t perform that action at this time.
0 commit comments