Skip to content

Bump black from 19.10b0 to 24.3.0 #96

Bump black from 19.10b0 to 24.3.0

Bump black from 19.10b0 to 24.3.0 #96

Workflow file for this run

name: Lint code
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.7
uses: actions/setup-python@v2
with:
python-version: 3.7
- name: Install Python dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements-dev.txt
- name: Format check
run: make format-check