Skip to content

Merge pull request #31 from ga4gh/fix-unbound-local-error #15

Merge pull request #31 from ga4gh/fix-unbound-local-error

Merge pull request #31 from ga4gh/fix-unbound-local-error #15

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- name: Set up Python 3.12
uses: actions/setup-python@v5
with:
python-version: '3.12'
architecture: 'x64'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install '.[dev]'
- name: Run lint + format
run: |
ruff check src
- name: Run tests
run: pytest