Skip to content

Bump tox from 3.25.1 to 4.11.0 #450

Bump tox from 3.25.1 to 4.11.0

Bump tox from 3.25.1 to 4.11.0 #450

Workflow file for this run

name: Fiskebot
on:
- pull_request
jobs:
lint:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.9]
steps:
- uses: actions/checkout@v1
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install tox tox-gh-actions
pip install -r requirements/dev.txt
- name: isort
run: tox -e isort
- name: flake8
run: tox -e flake8
- name: black
run: tox -e black