Skip to content
This repository has been archived by the owner on Jul 23, 2024. It is now read-only.

ci: add black format #168

Merged
merged 1 commit into from
Aug 17, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions .github/workflows/black.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Black Check

# Run action on PRs to master
on:
pull_request:
branches: [ master ]

jobs:
suggest:
runs-on: ubuntu-latest

steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so that black can inspect it
- uses: actions/checkout@v2
- uses: rgasper/python-black-pull-request-action@master
env:
GITHUB_TOKEN: ${{ secrets.ACCESS_TOKEN }}