Skip to content

fixed bug

fixed bug #4

Workflow file for this run

name: CI
on:
push:
branches: ["main"]
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: mamba-org/setup-micromamba@v1
with:
environment-file: environment.yml
create-args: python=3.11
init-shell: bash
- name: Install package
shell: micromamba-shell {0}
run: |
pip install -e ".[dev]"
- name: Lint
shell: micromamba-shell {0}
run: |
ruff check src scripts
- name: Tests
shell: micromamba-shell {0}
run: |
pytest --maxfail=1 --disable-warnings -q