Skip to content

Prepare release 1.13.0 #81

Prepare release 1.13.0

Prepare release 1.13.0 #81

Workflow file for this run

name: Code quality checks
# Run this workflow every time a new commit pushed to your repository
on:
push:
branches:
- main
tags:
- '*'
paths:
- '**.py'
pull_request:
paths:
- '**.py'
workflow_dispatch:
jobs:
linting:
name: Code-quality checks
runs-on: ubuntu-latest
strategy:
matrix:
toxenv:
- isort
- black
- docs
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: '3.9'
- name: Install dependencies
run: pip install tox tox-gh-actions
- run: tox
env:
TOXENV: ${{ matrix.toxenv }}