File tree 3 files changed +15
-2
lines changed
3 files changed +15
-2
lines changed Original file line number Diff line number Diff line change
1
+ #! /usr/bin/env bash
2
+
3
+ # Tell bash shell to report errors and exit
4
+ set -e
5
+
6
+ # Automate upload all new forecast to Zoltar
7
+ python3 ./code/zoltar_scripts/upload_covid19_forecasts_to_zoltar.py
8
+ echo " UPLOAD TO ZOLTAR SUCCESSFUL"
Original file line number Diff line number Diff line change 2
2
set -e
3
3
4
4
# Re-validate data before uploading
5
- bash ./travis /validate-data.sh
5
+ bash ./.github/workflows /validate-data.sh
6
6
7
7
# Upload to zoltar at every merged pull request
8
8
echo " Upload forecasts to Zoltar "
9
- bash ./travis /upload-to-zoltar.sh
9
+ bash ./.github/workflows /upload-to-zoltar.sh
10
10
11
11
# Replace the validated_files.csv with locally_validated_files.csv at every build except PRs
12
12
echo " replacing validated files"
Original file line number Diff line number Diff line change
1
+ #! /usr/bin/env bash
2
+
3
+ # test covid forecast submission formatting
4
+ echo " TESTING SUBMISSIONS..."
5
+ python3 code/validation/test_formatting.py
You can’t perform that action at this time.
0 commit comments