File tree Expand file tree Collapse file tree 1 file changed +21
-3
lines changed Expand file tree Collapse file tree 1 file changed +21
-3
lines changed Original file line number Diff line number Diff line change 12
12
- cron : " 0 0 * * 1"
13
13
14
14
jobs :
15
- build :
15
+ review :
16
16
runs-on : ubuntu-latest
17
-
18
17
steps :
19
- - uses : actions/checkout@v2
18
+ - uses : actions/checkout@v4
19
+ - name : Set up JDK 1.8
20
+ uses : actions/setup-java@v4
21
+ with :
22
+ distribution : ' temurin'
23
+ java-version : ' 8'
20
24
- name : download review script
21
25
run : curl --silent -L "https://raw.githubusercontent.com/globalbioticinteractions/globinizer/master/check-dataset.sh" > check-dataset.sh
26
+ - name : download network compiler script
27
+ run : |
28
+ curl --silent -L "https://raw.githubusercontent.com/globalbioticinteractions/globinizer/master/compile-network.sh" > compile-network.sh
29
+ chmod +x compile-network.sh
22
30
- name : review dataset
23
31
run : bash check-dataset.sh "${GITHUB_REPOSITORY}"
32
+ - name : Share review report
33
+ uses : actions/upload-artifact@v4
34
+ with :
35
+ name : review-report
36
+ path : |
37
+ README.txt
38
+ datasets/
39
+ index.*
40
+ indexed-*
41
+ review*
You can’t perform that action at this time.
0 commit comments