Skip to content

Add black lint (#483) #127

Add black lint (#483)

Add black lint (#483) #127

Workflow file for this run

name: CI
on:
- push
- pull_request
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: "3.7"
- name: Install dependencies
run: |
pip install --upgrade pip
pip install -r requirements-dev.txt
- name: Lint
run: flake8 --show-source --statistics
- name: Blint
run: black --check --diff .
- name: Run tests
run: pytest