Skip to content

Commit a530040

Browse files
author
Jorrit Poelen
committed
upload review
1 parent 064d559 commit a530040

File tree

1 file changed

+21
-3
lines changed

1 file changed

+21
-3
lines changed

.github/workflows/review.yml

Lines changed: 21 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,30 @@ on:
1212
- cron: "0 0 * * 1"
1313

1414
jobs:
15-
build:
15+
review:
1616
runs-on: ubuntu-latest
17-
1817
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'
2024
- name: download review script
2125
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
2230
- name: review dataset
2331
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*

0 commit comments

Comments
 (0)