Skip to content

Bump actions/setup-python from 5.2.0 to 6.1.0 #210

Bump actions/setup-python from 5.2.0 to 6.1.0

Bump actions/setup-python from 5.2.0 to 6.1.0 #210

Workflow file for this run

name: main
on:
push:
branches: [master, main]
tags:
pull_request:
jobs:
main:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
python: ['pypy3.9', '3.8', '3.9', '3.10', '3.11', '3.12']
toxenv: [py]
include:
# windows
- os: windows-latest
python: '3.12'
toxenv: py
# typing
- os: ubuntu-latest
python: '3.8'
toxenv: typing
# misc
- os: ubuntu-latest
python: '3.12'
toxenv: docs
- os: ubuntu-latest
python: '3.12'
toxenv: pre-commit
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
- uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 # v6.1.0
with:
python-version: ${{ matrix.python }}
- run: python -mpip install --upgrade setuptools pip tox virtualenv
- run: tox -e ${{ matrix.toxenv }}