Skip to content

Elevated permissions for GITHUB_TOKEN to write PRs. Making errors more pronounced #376

Elevated permissions for GITHUB_TOKEN to write PRs. Making errors more pronounced

Elevated permissions for GITHUB_TOKEN to write PRs. Making errors more pronounced #376

Workflow file for this run

name: Black Code Formatter Check
on: [pull_request]
jobs:
black-check:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.11' # Specify the version of Python you need
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install black
pip install "black[jupyter]"
- name: Run Black
run: black --diff --check .