chore(deps): bump python-semantic-release from 10.4.0 to 10.4.1 (#22) #38
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 | |
| pull_request: | |
| branches: | |
| - main | |
| permissions: | |
| contents: read | |
| jobs: | |
| ci: | |
| name: CI | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| python: ["3.11", "3.12", "3.13"] | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v4 | |
| - name: Set up Python | |
| run: uv python install ${{ matrix.python }} | |
| - name: Set up Node.js | |
| uses: actions/setup-node@v5 | |
| - name: Install dependencies | |
| run: | | |
| uv sync --all-packages | |
| npm install | |
| - name: Lint code | |
| run: uv run poe lint | |
| - name: Typecheck code | |
| run: uv run poe typecheck | |
| - name: Run tests | |
| run: uv run poe test |