Partial changes for VCF Character S->U #2971
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: Build | |
on: | |
push: | |
pull_request: | |
schedule: | |
# Run at the end of every day | |
- cron: "0 0 * * *" | |
jobs: | |
build: | |
# Scheduled runs only on the origin org | |
if: (github.event_name == 'schedule' && github.repository_owner == 'pystatgen') || (github.event_name != 'schedule') | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: ["3.9", "3.10", "3.11"] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install -r requirements.txt -r requirements-dev.txt | |
- name: Run pre-commit | |
uses: pre-commit/[email protected] | |
- name: Test with pytest | |
env: | |
# Enable cache to workaround build problems | |
# https://github.com/pystatgen/sgkit/issues/1194 | |
SGKIT_DISABLE_NUMBA_CACHE: 0 | |
run: | | |
pytest -v | |
- name: Test with pytest and coverage (numba jit disabled) | |
env: | |
# See above ^ | |
SGKIT_DISABLE_NUMBA_CACHE: 0 | |
NUMBA_DISABLE_JIT: 1 | |
run: | | |
pytest -v --cov=sgkit --cov-report=term-missing | |
- name: Upload coverage to Codecov | |
uses: codecov/codecov-action@v3 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} |