Skip to content

Commit 1a8b17e

Browse files
Update yaml
1 parent b14dd9c commit 1a8b17e

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -74,19 +74,20 @@ jobs:
7474
7575
- name: Run inference
7676
run: |
77+
# doing 10 days here as this is taking a while
7778
last_ts=testrun/initial.ts
7879
sc2ts initialise -v $last_ts testrun/match.db
79-
for date in `sc2ts list-dates testrun/metadata.db`; do
80+
for date in `sc2ts list-dates testrun/metadata.db | head -n 10`; do
8081
out_ts=testrun/$date.ts
8182
sc2ts extend $last_ts $date \
8283
testrun/alignments.db testrun/metadata.db \
83-
testrun/match.db $out_ts --min-group-size=2
84+
testrun/match.db $out_ts -v --min-group-size=2
8485
last_ts=$out_ts
8586
done
8687
8788
- name: Validate
8889
run: |
89-
sc2ts validate -v testrun/alignments.db testrun/2020-02-13.ts
90+
sc2ts validate -v testrun/alignments.db testrun/2020-02-02.ts
9091
9192
- name: MatchDB
9293
run: |

0 commit comments

Comments
 (0)