Skip to content

Bump actions/setup-python from 5 to 6 #16

Bump actions/setup-python from 5 to 6

Bump actions/setup-python from 5 to 6 #16

Workflow file for this run

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