-
Notifications
You must be signed in to change notification settings - Fork 32
52 lines (47 loc) · 1.12 KB
/
synthetic-validation.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
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