Skip to content

Commit

Permalink
check optional files
Browse files Browse the repository at this point in the history
  • Loading branch information
lskatz committed Sep 10, 2024
1 parent 00b6e30 commit 24540ee
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/check-dbs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,16 @@ jobs:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
- name: Run tests
- name: Check mandatory files
run: |
set -x
ls db/${{ matrix.db }}/alleles_0.*
ls db/${{ matrix.db }}/alleleinfo.txt_0
ls db/${{ matrix.db }}/loci.tsv
ls db/${{ matrix.db }}/OrganismSettings.json
- name: Check optional files
run: |
set -x
ls db/${{ matrix.db }}/alleles.fasta.gz || true
ls -a db/${{ matrix.db }}/loci || true

0 comments on commit 24540ee

Please sign in to comment.