-
Notifications
You must be signed in to change notification settings - Fork 2
33 lines (29 loc) · 1.27 KB
/
lassa.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
name: "Lassa workflow"
on:
- push
- pull_request
jobs:
lassa:
permissions:
contents: read
id-token: write
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/setup.yaml
- shell: Rscript {0}
run: |
library(orderly2)
orderly_location_pull_packet("latest(name == 'db_extraction' && parameter:pathogen == 'LASSA')",
options = list(location="packit"))
ids <- c(
orderly_run("db_double", parameters = list(pathogen = "LASSA")),
orderly_run("db_compilation", parameters = list(pathogen = "LASSA")),
orderly_run("lassa_serology", parameters = list(pathogen = "LASSA")),
orderly_run("lassa_severity", parameters = list(pathogen = "LASSA")),
orderly_run("lassa_delays", parameters = list(pathogen = "LASSA")),
orderly_run("lassa_transmission", parameters = list(pathogen = "LASSA")),
orderly_run("lassa_summary", parameters = list(pathogen = "LASSA")),
orderly_run("lassa_latex_tables", parameters = list(pathogen = "LASSA")),
orderly_run("lassa_collate", parameters = list(pathogen = "LASSA")))
orderly_location_push(ids, "packit")