Add gamma-delta genes to test sets #10
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
# This workflow will install dependencies and run pytest | |
name: tests | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
name: Run pytest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install requirements | |
run: pip install -r requirements-dev.txt | |
- name: Run tests | |
run: pytest |