-
Notifications
You must be signed in to change notification settings - Fork 2
31 lines (28 loc) · 1.08 KB
/
do_prediction_randfor.yml
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
on:
workflow_dispatch:
schedule:
- cron: "0 20 * * *"
# push:
jobs:
build:
runs-on: ubuntu-22.04
container:
image: eco4cast/rocker-neon4cast
steps:
- name: Checkout repo
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: install R packages
run: R -e 'source("install.R")'
- name: install extra R packages
run: R -e 'install.packages(c("tidymodels", "bundle", "ranger"))'
# Point to the right path, run the right Rscript command
- name: Update observed meterological data
run: Rscript ./Generate_forecasts/noaa_downloads/write_noaa_past_meteo.R
- name: Run automatic prediction file (random forest)
run: Rscript ./Generate_forecasts/tg_randfor/forecast_model.R
- name: Run automatic prediction file (random forest all sites)
run: Rscript ./Generate_forecasts/tg_randfor_all_sites/forecast_model.R
- name: Run automatic prediction file (random forest, parameter and process uncertainty)
run: Rscript ./Generate_forecasts/tg_randfor_parmens/forecast_model.R