Skip to content

refactor: replace pipeline with layered app runtime #2

refactor: replace pipeline with layered app runtime

refactor: replace pipeline with layered app runtime #2

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