10000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f6f6f32 commit 5ba496cCopy full SHA for 5ba496c
.github/workflows/black.yaml
@@ -0,0 +1,21 @@
1
+name: Black
2
+
3
+on: ["push", "pull_request"]
4
5
+jobs:
6
+ black:
7
+ runs-on: ubuntu-latest
8
+ steps:
9
+ - name: Setup Python
10
+ uses: actions/setup-python@v1
11
+ with:
12
+ python-version: '3.x'
13
+ architecture: 'x64'
14
15
+ - name: Checkout
16
+ uses: actions/checkout@v1
17
18
+ - name: Black Code Formatter
19
+ run: |
20
+ pip install black
21
+ black --diff --check msgpack/ test/
.travis.yml
@@ -23,14 +23,6 @@ _pure: &pure
23
24
matrix:
25
include:
26
- - name: Black
27
- language: python
28
- python: 3.7
29
- install:
30
- - pip install black
31
- script:
32
- - black --check --diff .
33
-
34
- name: 32bit build
35
language: python
36
services:
0 commit comments