Skip to content

[REFACTOR] Simplification de l'arborescence #5

[REFACTOR] Simplification de l'arborescence

[REFACTOR] Simplification de l'arborescence #5

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
workflow_dispatch:
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
jobs:
qualite:
name: Lint et tests (Python ${{ matrix.python-version }})
runs-on: windows-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.10", "3.13"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: pip
- name: Installer les dependances
run: |
python -m pip install --upgrade pip
pip install -e ".[dev]"
- name: Ruff (lint)
run: ruff check .
- name: Ruff (format)
run: ruff format --check music_overlay tests
- name: Tests
run: pytest