Skip to content

Merge pull request #1 from ArietidsZ/codebase-architecture-redesign #5

Merge pull request #1 from ArietidsZ/codebase-architecture-redesign

Merge pull request #1 from ArietidsZ/codebase-architecture-redesign #5

Workflow file for this run

name: CI
on:
push:
branches: ["main"]
pull_request:
jobs:
lint-and-test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest]
python-version: ["3.11"]
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install project and dev dependencies
run: python -m pip install -e ".[dev]"
- name: Lint with Ruff
run: python -m ruff check .
- name: Run tests with pytest
run: python -m pytest