π Release v0.2.0 #12
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: "Main workflow" | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| jobs: | |
| Pipeline: | |
| runs-on: ubuntu-latest | |
| container: python:3.12 | |
| steps: | |
| - name: Check out Git repository | |
| uses: actions/checkout@v4 | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v4 | |
| with: | |
| version: "0.5.8" | |
| enable-cache: true | |
| cache-suffix: "optional-suffix" | |
| cache-dependency-glob: "pyproject.toml" | |
| - name: Set up Python | |
| run: uv python install 3.12 | |
| - name: Install requirements | |
| run: make requirements | |
| - name: Checks | |
| run: make checks | |
| - name: Tests | |
| run: make test |