Skip to content

Commit

Permalink
ci: test fix missing install command
Browse files Browse the repository at this point in the history
  • Loading branch information
ktmeaton committed Dec 1, 2023
1 parent dd84f72 commit 212f2ed
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/latest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -72,13 +72,16 @@ jobs:
run: |
${{ env.RUN_CMD }} dataset download --name sars-cov-2 --tag latest --output-dir dataset/sars-cov-2/latest
- name: run
run: |
${{ env.RUN_CMD }} run --dataset-dir dataset/sars-cov-2/latest --output-dir output/validate --populations "*" --threads 2
- name: plot
run: |
${{ env.RUN_CMD }} plot --dataset-dir dataset/sars-cov-2/latest --run-dir output/validate
- name: validate
run: |
${{ env.RUN_CMD }} run --dataset-dir dataset/sars-cov-2/latest --output-dir output/validate --populations "*" --threads 2
if [[ $(grep "fail" output/validate/linelist.tsv) ]]; then exit 1; fi
- name: upload
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ jobs:
path: target/${{ matrix.arch }}/release

- name: install
if: matrix.os == 'windows-latest'
if: ${{ matrix.arch != 'docker' }}
run: |
chmod +x target/${{ matrix.arch }}/release/${{ matrix.binary }}
cp target/${{ matrix.arch }}/release/${{ matrix.binary }} .
Expand Down

0 comments on commit 212f2ed

Please sign in to comment.