v0.2.1 (#12) #79
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: Lint and Test | |
| on: | |
| push: | |
| branches: [ main ] | |
| tags: '**' | |
| pull_request: | |
| branches: [ main ] | |
| # schedule: | |
| # # 6:00 every 7th of month | |
| # - cron: '0 6 7 * *' | |
| jobs: | |
| build: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| python-version: ["3.12", "3.13", "3.14"] | |
| os: [ubuntu-latest, windows-latest, macos-latest] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: "Setup uv ${{ matrix.python-version }} / ${{ matrix.os }}" | |
| uses: astral-sh/setup-uv@v5 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Build | |
| run: uv sync --dev | |
| - name: Lint | |
| run: | | |
| uv run ruff check | |
| uv run mypy . | |
| - name: Test | |
| run: | | |
| uv run pytest | |
| - name: Upload coverage report | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: coverage-html-${{ matrix.os }}-${{ matrix.python-version }} | |
| path: htmlcov/ |