Skip to content

Bump the pip group across 2 directories with 4 updates #13

Bump the pip group across 2 directories with 4 updates

Bump the pip group across 2 directories with 4 updates #13

Workflow file for this run

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