Skip to content

Workflow file for this run

name: "Ebola workflow"
on:
- push
- pull_request
jobs:
ebola:
permissions:
contents: read
id-token: write
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/setup
- shell: Rscript {0}
run: |
library(orderly2)
orderly_location_pull_packet("latest(name == 'db_extraction' && parameter:pathogen == 'EBOLA')",
options = list(location="packit"))
ids <- c(
orderly_run("db_double", parameters = list(pathogen = "EBOLA")),
orderly_run("db_compilation", parameters = list(pathogen = "EBOLA")),
orderly_run("ebola_reproduction_number", parameters = list(pathogen = "EBOLA")),
orderly_run("ebola_severity", parameters = list(pathogen = "EBOLA")),
orderly_run("ebola_severity_additional", parameters = list(pathogen = "EBOLA")),
orderly_run("ebola_delays", parameters = list(pathogen = "EBOLA")),
orderly_run("ebola_seroprevalence", parameters = list(pathogen = "EBOLA")),
orderly_run("ebola_mutations", parameters = list(pathogen = "EBOLA")),
orderly_run("ebola_attack_rate", parameters = list(pathogen = "EBOLA")),
orderly_run("ebola_overdispersion", parameters = list(pathogen = "EBOLA")),
orderly_run("ebola_growth_rate", parameters = list(pathogen = "EBOLA")),
orderly_run("ebola_doubling_time", parameters = list(pathogen = "EBOLA")),
orderly_run("ebola_models", parameters = list(pathogen = "EBOLA")),
orderly_run("ebola_summary", parameters = list(pathogen = "EBOLA")))
orderly_location_push(ids, "packit")