Skip to content

Bump the gh-actions-packages group across 1 directory with 4 updates #141

Bump the gh-actions-packages group across 1 directory with 4 updates

Bump the gh-actions-packages group across 1 directory with 4 updates #141

Workflow file for this run

name: Black Code Formatting
on:
push:
branches:
- main
pull_request:
permissions:
contents: read
jobs:
run-black:
name: Run Code Formatting Check
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
with:
fetch-depth: 1
- name: Set up Python
uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6.0
with:
python-version: "3.10"
- name: Install Dependencies
run: pip install -r requirements.txt
- name: Run Black
run: black toto --check