File tree Expand file tree Collapse file tree 1 file changed +15
-17
lines changed Expand file tree Collapse file tree 1 file changed +15
-17
lines changed Original file line number Diff line number Diff line change @@ -3,23 +3,6 @@ name: cve-bin-tool
3
3
on : [push, pull_request]
4
4
5
5
jobs :
6
- check :
7
- runs-on : ubuntu-latest
8
- steps :
9
- - uses : actions/checkout@v1
10
- - name : Set up Python
11
- uses : actions/setup-python@v1
12
- with :
13
- python-version : 3.7
14
- - name : Install dependencies
15
- run : |
16
- python -m pip install --upgrade pip
17
- pip install -r requirements.txt
18
- - name : Lint with black
19
- run : |
20
- pip install black
21
- black --check cve_bin_tool/
22
- black --check test/
23
6
24
7
build :
25
8
41
24
- name : Run tests
42
25
run : |
43
26
ACTIONS=1 python setup.py test
27
+
28
+ black_check :
29
+ runs-on : ubuntu-latest
30
+ steps :
31
+ - uses : actions/checkout@v1
32
+ - name : Set up Python
33
+ uses : actions/setup-python@v1
34
+ with :
35
+ python-version : 3.7
36
+ - name : Lint with black
37
+ run : |
38
+ pip install black
39
+ black --check cve_bin_tool/
40
+ black --check test/
41
+
You can’t perform that action at this time.
0 commit comments