Skip to content

Bump Swatinem/rust-cache from 2.7.1 to 2.7.3 #154

Bump Swatinem/rust-cache from 2.7.1 to 2.7.3

Bump Swatinem/rust-cache from 2.7.1 to 2.7.3 #154

Workflow file for this run

name: Python black
# Run either when pushing directly to main/master or in a PR targeting main/master
on:
push:
branches:
- master
- main
paths:
- "**.py"
- ".github/workflows/black.yml"
pull_request:
branches:
- master
- main
# https://github.com/psf/black
jobs:
format:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Set up Python environment
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Black
uses: psf/black@stable
with:
options: "--check --verbose --diff --color --config python/pyproject.toml"
src: "python/"