Skip to content

Commit

Permalink
upgrade action versions; package review report
Browse files Browse the repository at this point in the history
  • Loading branch information
Jorrit Poelen committed Aug 17, 2023
1 parent ba68b8e commit 360ce74
Showing 1 changed file with 14 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,16 +12,25 @@ on:
- 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@v1
uses: actions/setup-java@v3
with:
java-version: 1.8
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: 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/
indexed-*
review*

0 comments on commit 360ce74

Please sign in to comment.