Skip to content

Compute taxon influence (#150) #39

Compute taxon influence (#150)

Compute taxon influence (#150) #39

Workflow file for this run

on:
push:
branches:
- main
- master
paths:
- 'DESCRIPTION'
- '**codemeta.yml'
name: codemeta
jobs:
codemeta:
runs-on: macOS-latest
env:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
R_COMPILE_AND_INSTALL_PACKAGES: 'never'
R_REMOTES_STANDALONE: true
R_REMOTES_NO_ERRORS_FROM_WARNINGS: true
RSPM: ${{ matrix.config.rspm }}
steps:
- uses: actions/checkout@v2
- uses: r-lib/actions/setup-r@v2
with:
r-version: release
- name: Query dependencies
run: |
install.packages('remotes')
saveRDS(remotes::dev_package_deps(
dependencies = c("soft", "Config/Needs/metadata")
),
".github/depends.Rds", version = 2)
writeLines(sprintf("R-%i.%i", getRversion()$major, getRversion()$minor), ".github/R-version")
shell: Rscript {0}
- name: Cache R packages
uses: actions/cache@v2
with:
path: ${{ env.R_LIBS_USER }}
key: ${{ runner.os }}-${{ hashFiles('.github/R-version') }}-1-${{ hashFiles('.github/depends.Rds') }}
restore-keys: ${{ runner.os }}-${{ hashFiles('.github/R-version') }}-1-
- name: Install dependencies
run: |
remotes::install_deps(
dependencies = c("soft", "Config/Needs/metadata")
)
shell: Rscript {0}
- name: Build metadata
run: "codemeta::write_codemeta()"
shell: Rscript {0}
- name: Deploy metadata
run: |
git config --local user.email "actions@github.com"
git config --local user.name "GitHub Actions"
git add codemeta.json
git commit -m "Update codemeta.json"
git push