chore(deps): update actions/setup-python action to v6 #12
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: PR Checks | |
| on: | |
| pull_request: | |
| branches: [master] | |
| types: [opened, synchronize, reopened, updated] | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v3 | |
| - name: Set up Python | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: '3.12' | |
| poetry: true | |
| - name: Add Poetry to PATH | |
| run: echo "${{ steps.setup-python.outputs.poetry-path }}/bin" >> $GITHUB_PATH | |
| - name: Install dependencies | |
| run: make dev-install | |
| - name: Run pre-commit | |
| run: make pre-commit | |
| - name: Run tests | |
| run: make test |