Skip to content

Bump black from 19.10b0 to 24.3.0 #18

Bump black from 19.10b0 to 24.3.0

Bump black from 19.10b0 to 24.3.0 #18

Workflow file for this run

name: Code Quality
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python: ["3.6", "3.7", "3.8"]
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 1
- name: Set up Python
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python }}
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Code Quality
run: |
pip install flake8
flake8 .