Automatic Vignette update (#848) #1656
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
name: "Synthetic validation check" | |
on: | |
push: | |
branches: | |
- main | |
- master | |
- develop | |
pull_request: | |
branches: | |
- main | |
- master | |
- develop | |
workflow_dispatch: | |
jobs: | |
synthetic-valiation: | |
runs-on: macos-latest | |
env: | |
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }} | |
steps: | |
- uses: actions/checkout@master | |
- uses: r-lib/actions/setup-r@v2 | |
- uses: r-lib/actions/setup-r-dependencies@v2 | |
with: | |
dependencies: NA | |
install-pandoc: false | |
extra-packages: | | |
here | |
scoringutils | |
loo | |
matrixStats | |
local::. | |
- name: Run synthetic validation | |
run: | | |
source("inst/dev/recover-synthetic/rt.R") | |
shell: Rscript {0} | |
- name: Upload validation figures | |
uses: actions/upload-artifact@v4 | |
with: | |
name: figures | |
retention-days: 5 | |
path: inst/dev/figs | |
- name: Upload validation fits | |
uses: actions/upload-artifact@v4 | |
with: | |
name: fits | |
retention-days: 5 | |
path: synthetic.rds |