Skip to content

Change GitHub Action Triggers to all PRs and Pushes to main #126

Change GitHub Action Triggers to all PRs and Pushes to main

Change GitHub Action Triggers to all PRs and Pushes to main #126

Workflow file for this run

name: "Black"
on:
pull_request:
push:
branches:
- main
jobs:
black:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: ["3.11"]
os: [ubuntu-latest]
steps:
- uses: actions/checkout@v4
- name: Black Code Formatter
uses: lgeiger/[email protected]
with:
args: ". --check"