summaryrefslogtreecommitdiff
path: root/.github/workflows/black.yaml
blob: cabd0ccf068b8eea900dd98de69ad09d65d64829 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
name: Black

on: ["push", "pull_request"]

jobs:
  black:
    runs-on: ubuntu-latest
    steps:
      - name: Setup Python
        uses: actions/setup-python@v1
        with:
          python-version: '3.x'
          architecture: 'x64'

      - name: Checkout
        uses: actions/checkout@v1

      - name: Black Code Formatter
        run: |
          pip install black
          black --diff --check msgpack/ test/