Skip to content

v1.0.0: Code quality refactoring & documentation updates #26

v1.0.0: Code quality refactoring & documentation updates

v1.0.0: Code quality refactoring & documentation updates #26

Workflow file for this run

name: ci
on:
push:
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5

Check failure on line 13 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/ci.yml

Invalid workflow file

You have an error in your yaml syntax on line 13
with: { python-version: ${{ matrix.python-version }} }
- name: Install
run: |
python -m pip install --upgrade pip
pip install -e .[dev]
- name: Lint
run: |
ruff check .
black --check .
mypy src/lophos
- name: Test
run: |
pytest -q --cov=src/lophos --cov-report=term-missing