Skip to content

Refa/update dependencies and cleanup #87

Refa/update dependencies and cleanup

Refa/update dependencies and cleanup #87

Workflow file for this run

name: Black formatter
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
black-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install black
- name: Run black check
run: |
python -m black --check .