Skip to content

Bump black from 24.1.1 to 24.3.0 #20

Bump black from 24.1.1 to 24.3.0

Bump black from 24.1.1 to 24.3.0 #20

Workflow file for this run

name: Checks
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
pylint:
runs-on: ubuntu-latest
strategy:
matrix:
os: [ubuntu-latest]
python-version: ["3.11"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
make install
# - name: Black
# run: |
# make black
- name: Ruff
run: |
make ruff