[CZID-8857] Add ConsensusGenomes to seed script #215
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Entities tests | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- "entities/**" | |
- "common/**" | |
pull_request: | |
branches: "**" | |
paths: | |
- "entities/**" | |
- "common/**" | |
jobs: | |
py-lint: | |
runs-on: [ARM64, self-hosted, Linux] | |
steps: | |
- uses: actions/checkout@v3 | |
# Build images and run linters | |
- name: Set up deps | |
run: | | |
make gha-setup | |
- name: Lint Python | |
working-directory: entities | |
run: | | |
make local-build | |
make check-lint | |
py-test: | |
runs-on: [ARM64, self-hosted, Linux] | |
steps: | |
- uses: actions/checkout@v3 | |
# Set up a local dev env and run tests | |
- name: Set up deps | |
run: | | |
make gha-setup | |
- name: Run tests | |
working-directory: entities | |
run: | | |
make local-init | |
make local-tests |