๐งผ Cleanup labels name after test run #1
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: ๐งช 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/[email protected] | |
| tests: | |
| name: ๐งช Tests - ${{ matrix.slice }} | |
| 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 | |
| run: | | |
| python -m pip install -e .[dev] | |
| pytest --exitfirst |