Skip to content

Commit

Permalink
Black Lint with github actions (Fast-64#278)
Browse files Browse the repository at this point in the history
* Black Lint with github actions

* Set permissions to none
  • Loading branch information
Dragorn421 authored Jan 7, 2024
1 parent 7031047 commit cad6560
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/black-lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# https://black.readthedocs.io/en/stable/integrations/github_actions.html

name: Black Lint

on: [push, pull_request]

jobs:
black-lint:
permissions: {} # Remove all permissions
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: psf/black@stable

0 comments on commit cad6560

Please sign in to comment.