857: improve language around the use of dist_spec #1932
Workflow file for this run
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-validation: | |
runs-on: macos-latest | |
env: | |
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }} | |
steps: | |
- uses: actions/checkout@master | |
- name: Setup R | |
uses: r-lib/actions/setup-r@v2 | |
- name: Setup pandoc | |
uses: r-lib/actions/setup-pandoc@v2 | |
- uses: r-lib/actions/setup-r-dependencies@v2 | |
with: | |
dependencies: NA | |
install-pandoc: false | |
extra-packages: | | |
here | |
scoringutils | |
loo | |
data.table | |
rstan | |
any::rmarkdown | |
matrixStats | |
local::. | |
- name: Run synthetic validation | |
run: | | |
Rscript -e ' | |
source("inst/dev/recover-synthetic/rt.R") | |
source("inst/dev/recover-synthetic/eval_rt.R") | |
' | |
- 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 | |
- name: Render synthetic recovery md | |
run: | | |
rmarkdown::render("inst/dev/synthetic_recovery.md") | |
shell: Rscript {0} | |
- name: Upload markdown | |
uses: actions/upload-artifact@v4 | |
with: | |
name: synthetic_recovery | |
retention-days: 5 | |
path: inst/dev/synthetic_recovery.html | |
- name: Post the artifact | |
uses: CDCgov/cfa-actions/post-artifact@main | |
if: ${{ github.event_name == 'pull_request' }} | |
with: | |
artifact-name: synthetic_recovery | |
gh-token: ${{ secrets.GITHUB_TOKEN }} | |
message: 'Thank you for your contribution ${{ github.actor }} :rocket:! Your { artifact-name } markdown is ready for download :point_right: [here]({ artifact-url }) :point_left:!' | |