👔 allow retries for Bad Gateway #15
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: "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 |