Load l2.json from 'repos/repo_name', fallback to cmssw_l2 if not found or empty #157
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Black Style Check | |
on: | |
pull_request: | |
paths: | |
- '**/*.py' | |
jobs: | |
black_check: | |
name: Check Python Code Style with Black | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out the code | |
uses: actions/checkout@v2 | |
- uses: psf/black@stable | |
with: | |
options: "--check --diff --verbose -l 99 -t py36 -t py37 -t py38 -t py39 -t py310 -t py311" |