Skip to content

Merge pull request #161 from ColinMaudry/hotfix/2.6.2 #10

Merge pull request #161 from ColinMaudry/hotfix/2.6.2

Merge pull request #161 from ColinMaudry/hotfix/2.6.2 #10

Workflow file for this run

name: Tests et couverture
on:
push:
branches: [ main, develop ]
pull_request:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Install dependencies
run: |
pip install -e .[dev]
- name: Run tests with coverage
run: pytest --cov=src --cov-report=term