Skip to content

⭕ Fix validation error not handled #9

⭕ Fix validation error not handled

⭕ Fix validation error not handled #9

Workflow file for this run

---
name: 🧪 Test
on:
push:
branches:
- main
paths:
- .github/workflows/*
- src/**
- test/**
concurrency:
group: ${{ github.workflow }}
cancel-in-progress: true
jobs:
lint:
name: 🧹 Lint
runs-on: ubuntu-latest
if: github.actor != 'renovate[bot]'
steps:
- name: 📥 Checkout repository
uses: actions/checkout@v5
- uses: pre-commit/action@v3.0.1
tests:
name: 🧪 Tests
runs-on: ubuntu-latest
needs: lint
steps:
- name: 📥 Checkout repository
uses: actions/checkout@v5
- name: 🐍 Setup Python
uses: actions/setup-python@v6
with:
python-version: 3.11
- name: 🧪 Run tests with coverage
run: |
python -m pip install -e .[dev]
coverage run -m pytest --exitfirst
coverage report --show-missing