Skip to content

Commit 5385694

Browse files
committed
revert to ubuntu-only
1 parent bd415be commit 5385694

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

.github/workflows/pythonapp.yml

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,12 @@ name: cve-bin-tool
33
on: [push, pull_request]
44

55
jobs:
6-
76
build:
87

98
runs-on: ${{ matrix.os }}
109
strategy:
1110
matrix:
12-
os: [ubuntu-latest, windows-latest]
11+
os: [ubuntu-latest]
1312
python: [3.6, 3.7]
1413
steps:
1514
- uses: actions/checkout@v1
@@ -21,12 +20,11 @@ jobs:
2120
run: |
2221
python -m pip install --upgrade pip
2322
pip install -r requirements.txt
24-
- name: Run tests
25-
run: |
26-
ACTIONS=1 python setup.py test
2723
- name: Lint with black
2824
run: |
2925
pip install black
3026
black --check cve_bin_tool/
3127
black --check test/
32-
28+
- name: Run tests
29+
run: |
30+
ACTIONS=1 python setup.py test

0 commit comments

Comments
 (0)