Fix formatting in README.md #6
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: CI | |
| on: | |
| push: | |
| pull_request: | |
| jobs: | |
| checks: | |
| # SoundGrab vise Windows en premier (registre, winget, os.startfile), mais | |
| # le code prevoit macOS et Linux : les deux plateformes sont donc testees. | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [ubuntu-latest, windows-latest] | |
| 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 le projet et son outillage | |
| run: pip install -e ".[dev]" | |
| - name: Lint | |
| run: ruff check . | |
| - name: Tests | |
| run: pytest -q |