fix(ci): add libasound2-dev to typecheck job, fix release→publish tri… #13
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] | |
| jobs: | |
| ci: | |
| uses: hyperb1iss/shared-workflows/.github/workflows/python-ci.yml@v1 | |
| with: | |
| python-version: "3.13" | |
| system-deps: libasound2-dev | |
| typecheck: | |
| name: Type Check | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - run: sudo apt-get update && sudo apt-get install -y libasound2-dev | |
| - uses: astral-sh/setup-uv@v7 | |
| - uses: actions/setup-python@v6 | |
| with: | |
| python-version: "3.13" | |
| - run: uv sync | |
| - run: uv run ty check src |