aboutsummaryrefslogblamecommitdiff
path: root/.github/workflows/black.yml
blob: 2cf5422d89f5686ba80861770e205dc172108568 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13












                                       
                                                
name: Black Autoformatting

on:
    push:
    pull_request:

jobs:
    format:
        name: Black Autoformatting
        runs-on: ubuntu-latest
        steps:
            - uses: actions/checkout@v1
            - name: Black Check
              run: black *.py && black cogs/*.py