Skip to content

fix: update readme and resolve merging conflict #67

fix: update readme and resolve merging conflict

fix: update readme and resolve merging conflict #67

Workflow file for this run

name: build
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ '3.8', '3.9', '3.10', '3.11' ]
max-parallel: 4
steps:
- uses: actions/checkout@v4
- name: Install uv and set Python to ${{ matrix.python-version }}
uses: astral-sh/setup-uv@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
uv sync --all-extras --dev
- name: Check types
run: |
uv run mypy app
- name: Lint
run: |
uv run ruff check
- name: Run unit tests
run: |
uv run pytest -v tests/app --cov --cov-report=html:coverage_reports #--random-order
- name: Run integration tests
run: |
uv run pytest -s -v tests/integration