mirror of
https://github.com/msgpack/msgpack-python.git
synced 2026-02-06 09:50:01 +00:00
21 lines
420 B
YAML
21 lines
420 B
YAML
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/
|