Skip to content

Commit 69e7e40

Browse files
committed
ci: add missing signals detector job
1 parent 3932341 commit 69e7e40

File tree

2 files changed

+29
-0
lines changed

2 files changed

+29
-0
lines changed
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
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+

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,4 @@ __pycache__/
77
/build
88
/node_modules
99
.mypy_cache
10+
/missing_db_signals.csv

0 commit comments

Comments
 (0)