-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #7 from globalbioticinteractions/master
add indexing GloBI configuration
- Loading branch information
Showing
4 changed files
with
415 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
# This workflow will review a GloBI indexed dataset. | ||
# For more information see: https://globalbioticinteractions.org | ||
|
||
name: GloBI review by Elton | ||
|
||
on: | ||
push: | ||
branches: [ '*' ] | ||
pull_request: | ||
branches: [ '*' ] | ||
schedule: | ||
- cron: "0 0 * * 1" | ||
|
||
jobs: | ||
review: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Set up JDK 1.8 | ||
uses: actions/setup-java@v4 | ||
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@v4 | ||
with: | ||
name: review-report | ||
path: | | ||
README.txt | ||
datasets/ | ||
index.* | ||
indexed-* | ||
review* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,3 @@ | ||
# History files | ||
.Rhistory | ||
.Rapp.history | ||
# Session Data files | ||
.RData | ||
# Example code in package build process | ||
*-Ex.R | ||
# Output files from R CMD build | ||
/*.tar.gz | ||
# Output files from R CMD check | ||
/*.Rcheck/ | ||
# RStudio files | ||
.Rproj.user/ | ||
# produced vignettes | ||
vignettes/*.html | ||
vignettes/*.pdf | ||
# OAuth2 token, see https://github.com/hadley/httr/releases/tag/v0.3 | ||
.httr-oauth | ||
# knitr and R markdown default cache directories | ||
/*_cache/ | ||
/cache/ | ||
# Temporary files created by R markdown | ||
*.utf8.md | ||
*.knit.md | ||
#Custom view | ||
.DS_Store | ||
Thumbs.db | ||
OBservData.Rproj | ||
#Embargo Folder | ||
Processing_files/Datasets_Processing/Embargo/ | ||
.elton/ | ||
add_travis_artifact_upload_keys.sh | ||
datasets/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.