[go: nahoru, domu]

Skip to content

Commit

Permalink
upgrade review workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Jorrit Poelen committed Oct 2, 2023
1 parent b1527b5 commit f31a54d
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 3 deletions.
26 changes: 23 additions & 3 deletions .github/workflows/review.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,34 @@ on:
branches: [ '*' ]
pull_request:
branches: [ '*' ]
schedule:
- cron: "0 0 * * 1"

jobs:
build:
review:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Set up JDK 1.8
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '8'
- name: download review script
run: curl --silent -L "https://raw.githubusercontent.com/globalbioticinteractions/globinizer/master/check-dataset.sh" > check-dataset.sh
- name: download network compiler script
run: |
curl --silent -L "https://raw.githubusercontent.com/globalbioticinteractions/globinizer/master/compile-network.sh" > compile-network.sh
chmod +x compile-network.sh
- name: review dataset
run: bash check-dataset.sh "${GITHUB_REPOSITORY}"
- name: Share review report
uses: actions/upload-artifact@v3
with:
name: review-report
path: |
README.txt
datasets/
index.*
indexed-*
review*
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
.elton/
add_travis_artifact_upload_keys.sh
datasets/

0 comments on commit f31a54d

Please sign in to comment.