Skip to content

Bump black from 22.3.0 to 24.3.0 #32

Bump black from 22.3.0 to 24.3.0

Bump black from 22.3.0 to 24.3.0 #32

Workflow file for this run

name: Check
on: [pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/[email protected]
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install -r requirements_dev.txt
- name: black
run: |
black --check pyeight
- name: isort
run: |
isort --check pyeight
- name: pylint
run: |
pylint pyeight
- name: mypy
run: |
mypy pyeight