add a few more homeassistant deps #760
Workflow file for this run
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: Run tests | |
| on: | |
| push: | |
| pull_request: | |
| jobs: | |
| tests: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v5 | |
| with: | |
| version: "latest" | |
| - name: Run tests | |
| run: | | |
| ./test.sh | |
| simple-primer: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v5 | |
| with: | |
| version: "latest" | |
| - name: Run tests | |
| run: | | |
| uv run mypy_primer --debug -k hauntsaninja --coverage | |
| uv run mypy_primer --debug -k hauntsaninja --type-checker mypy --new v1.15 --old v1.15 | |
| uv run mypy_primer --debug -k hauntsaninja --type-checker pyright --new 1.1.400 --old 1.1.400 | |
| uv run mypy_primer --debug -k hauntsaninja --measure-project-runtimes |