Skip to content

Prepare MouseEchoQC for public release #1

Prepare MouseEchoQC for public release

Prepare MouseEchoQC for public release #1

Workflow file for this run

name: CI
on:
push:
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install package
run: python -m pip install -e ".[dev]"
- name: Ruff check
run: python -m ruff check .
- name: Ruff format check
run: python -m ruff format --check .
- name: Tests
run: python -m pytest
- name: Build package
run: python -m build