Skip to content

Start model refactoring and fix tests #1

Start model refactoring and fix tests

Start model refactoring and fix tests #1

Workflow file for this run

name: Continuous Integration
on:
push:
branches:
- main
tags:
- 'v*'
pull_request:
jobs:
lint-and-test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [
"3.11",
]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
- run: pip install .[dev]
- name: Formatting and Linters
run: ruff check
- name: Tests
run: pytest tests -m "not slow" -r a