Bump actions/setup-python from 5 to 6 #16
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: Check | |
| on: | |
| - push | |
| - pull_request | |
| jobs: | |
| linter: | |
| name: linter | |
| runs-on: ubuntu-latest | |
| if: ${{ !startsWith(github.ref, 'refs/tags') }} | |
| steps: | |
| - uses: actions/checkout@v5 | |
| with: | |
| fetch-depth: 0 | |
| - name: Set up Python | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: "3.11" # minimum supported lang version | |
| - name: Install dependencies | |
| run: python -m pip install tox | |
| - name: Run | |
| run: tox -e lint | |
| pkglint: | |
| name: pkglint | |
| runs-on: ubuntu-latest | |
| if: ${{ !startsWith(github.ref, 'refs/tags') }} | |
| steps: | |
| - uses: actions/checkout@v5 | |
| with: | |
| fetch-depth: 0 | |
| - name: Set up Python | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: "3.11" # minimum supported lang version | |
| - name: Install dependencies | |
| run: python -m pip install tox | |
| - name: Run | |
| run: tox -e pkglint |