Skip to content

Bump version: 2.15.3 → 2.15.4 #105

Bump version: 2.15.3 → 2.15.4

Bump version: 2.15.3 → 2.15.4 #105

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