Make type="orthologs" default for bgee #1532
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: CI | |
on: | |
schedule: | |
- cron: "0 16 * * 1,4" | |
push: | |
paths: | |
- 'gget/**' | |
- 'tests/**' | |
jobs: | |
build: | |
runs-on: ubuntu-22.04 | |
strategy: | |
fail-fast: false | |
matrix: | |
python: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12'] | |
os: ['ubuntu-22.04'] | |
name: Test on Python ${{ matrix.python }} | |
steps: | |
- name: Checkout branch | |
uses: actions/checkout@main | |
- name: Setup python | |
uses: actions/setup-python@v1 | |
with: | |
python-version: ${{ matrix.python }} | |
architecture: x64 | |
- name: Install dependencies | |
run: pip install -r requirements.txt && pip install -r dev-requirements.txt | |
- name: Run tests | |
run: coverage run -m pytest -ra -v tests && coverage report --omit=main.py,tests* |