Skip to content

Release notes for 2.15.3 (#443) #94

Release notes for 2.15.3 (#443)

Release notes for 2.15.3 (#443) #94

Workflow file for this run

name: Checks
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
checks:
runs-on: ubuntu-latest
strategy:
matrix:
include:
- python-version: 3
env:
TOXENV: flake8
- python-version: "3.11"
env:
TOXENV: docs
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Run check
env: ${{ matrix.env }}
run: |
pip install -U pip
pip install -U tox
tox