Skip to content

Merge pull request #59 from PyCQA/pre-commit-ci-update-config #120

Merge pull request #59 from PyCQA/pre-commit-ci-update-config

Merge pull request #59 from PyCQA/pre-commit-ci-update-config #120

Workflow file for this run

name: main
on:
push:
branches: [main]
tags:
pull_request:
jobs:
main:
strategy:
matrix:
include:
- os: ubuntu-latest
python: 3.9
toxenv: flake8
- os: ubuntu-latest
python: 3.9
toxenv: py
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 }}