Skip to content

Merge branch 'main' of github.com:trouchet/flowstep into main #12

Merge branch 'main' of github.com:trouchet/flowstep into main

Merge branch 'main' of github.com:trouchet/flowstep into main #12

Workflow file for this run

name: Lint workflow
on: [push, pull_request]
jobs:
lint:
runs-on: ubuntu-20.04
strategy:
max-parallel: 3
fail-fast: false
matrix:
python-version: [3.6, 3.7, 3.9]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: "pip"
- name: "Install and run pre-commit via tox"
run: |
python -m pip install tox==3.27.1 tox-gh-actions
python -m tox -vv