Created
March 20, 2026 02:01
-
-
Save jeanmidevacc/20e27941be3412165a938493ee670f07 to your computer and use it in GitHub Desktop.
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: | |
| branches: [main] | |
| tags: ["v*.*.*"] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| #some step before | |
| lint: | |
| name: Lint | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-python@v6 | |
| with: | |
| python-version: "3.11" | |
| - run: pip install --upgrade pip && pip install -e .[dev] | |
| - name: Ruff - lint | |
| run: ruff check . | |
| - name: Vulture - dead code | |
| run: vulture src/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment