Skip to content

Commit 4ea14fb

Browse files
authored
Merge pull request #164 from sommersoft/patch_black_check
Patch: Add Patchfile To Add Black Code Style Check To build.yml
2 parents 8685aa9 + c836947 commit 4ea14fb

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
From e725354300a8c8b9cdfcca9e8345568acee96d85 Mon Sep 17 00:00:00 2001
2+
From: sommersoft <[email protected]>
3+
Date: Tue, 7 Apr 2020 15:02:31 -0500
4+
Subject: [PATCH] build.yml: add black formatting check
5+
6+
---
7+
.github/workflows/build.yml | 3 +++
8+
1 file changed, 3 insertions(+)
9+
10+
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
11+
index 1dad804..b6977a9 100644
12+
--- a/.github/workflows/build.yml
13+
+++ b/.github/workflows/build.yml
14+
@@ -44,4 +44,7 @@ jobs:
15+
- name: Library version
16+
run: git describe --dirty --always --tags
17+
+ - name: Check formatting
18+
+ run: |
19+
+ black --check --target-version=py35 .
20+
- name: PyLint
21+
run: |
22+
--
23+
2.17.1
24+

0 commit comments

Comments
 (0)