Merge pull request #32 from artefatto/update-references #80
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: Continuos Integration | |
| on: [push, pull_request] | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-latest | |
| env: | |
| LOGFIRE_TOKEN: ${ secrets.LOGFIRE_TOKEN } | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v3 | |
| with: | |
| submodules: true | |
| - name: Installing Python | |
| uses: actions/setup-python@v4 | |
| with: | |
| python-version: 3.13 | |
| - name: Installing uv | |
| run: pipx install uv | |
| - name: Installing Dependencies | |
| run: uv sync | |
| - name: Linting | |
| run: uv run task lint | |
| - name: Type Checking | |
| run: uv run mypy . | |
| - name: Testing | |
| run: uv run task test |