File tree Expand file tree Collapse file tree 2 files changed +29
-0
lines changed Expand file tree Collapse file tree 2 files changed +29
-0
lines changed Original file line number Diff line number Diff line change 1+ name : Missing Signal Detector
2+
3+ on :
4+ workflow_dispatch :
5+
6+ jobs :
7+ build :
8+ runs-on : ubuntu-latest
9+ steps :
10+ - name : Check out code
11+ uses : actions/checkout@v2
12+ with :
13+ ref : dev
14+ - name : Set up Python 3.8
15+ uses : actions/setup-python@v2
16+ with :
17+ python-version : 3.8
18+ - name : Install Dependencies
19+ run : pip install requests pandas
20+ - name : Run Missing Signals Detector
21+ run : python scripts/report_missing_covidcast_meta.py
22+ - name : Upload Missing Artifact
23+ if : failure()
24+ uses : actions/upload-artifact@v2
25+ with :
26+ name : missing_db_signal.csv
27+ path : missing_db_signal.csv
28+
Original file line number Diff line number Diff line change @@ -7,3 +7,4 @@ __pycache__/
77/build
88/node_modules
99.mypy_cache
10+ /missing_db_signals.csv
You can’t perform that action at this time.
0 commit comments