Skip to content

[pre-commit.ci] pre-commit autoupdate #90

[pre-commit.ci] pre-commit autoupdate

[pre-commit.ci] pre-commit autoupdate #90

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.7, 3.7, 3.9, "3.10", 3.11, 3.12-dev]
toxenv: [py]
include:
# windows
- os: windows-latest
python: 3.7
toxenv: py
# misc
- os: ubuntu-latest
python: 3.9
toxenv: docs
- os: ubuntu-latest
python: 3.9
toxenv: pre-commit
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}
- run: python -mpip install --upgrade setuptools pip tox virtualenv
- run: tox -e ${{ matrix.toxenv }}