Skip to content

Bump actions/setup-python from 4 to 5 #92

Bump actions/setup-python from 4 to 5

Bump actions/setup-python from 4 to 5 #92

Workflow file for this run

name: Linters
on:
push:
pull_request:
jobs:
black:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install black
- name: Check with black
run: black --check .