Skip to content

Commit 9ede280

Browse files
committed
fixing fourth bug in ci.yml
1 parent bef8e2a commit 9ede280

File tree

1 file changed

+7
-25
lines changed

1 file changed

+7
-25
lines changed

.github/workflows/ci.yml

+7-25
Original file line numberDiff line numberDiff line change
@@ -15,21 +15,12 @@ on:
1515

1616
jobs:
1717

18-
python-3.6:
19-
runs-on: ${{ matrix.os.runs-on }}
18+
python3.6:
19+
runs-on: ubuntu-20.04
2020
strategy:
2121
matrix:
22-
python-version: "3.6"
23-
os:
24-
- name: Linux
25-
runs-on: ubuntu-20.04
26-
python_platform: linux
27-
#- name: Windows
28-
# runs-on: windows-latest
29-
# python_platform: win32
30-
- name: macOS
31-
runs-on: macos-latest
32-
python_platform: darwin
22+
python-version: ["3.6"]
23+
3324
name: "Python ${{ matrix.python-version }}"
3425
steps:
3526
- uses: actions/checkout@v2
@@ -58,21 +49,12 @@ jobs:
5849
files: coverage_${{ matrix.python-version }}.xml
5950
token: ${{ secrets.CODECOV_TOKEN }}
6051

61-
python-3.7+:
62-
runs-on: ${{ matrix.os.runs-on }}
52+
python3.7+:
53+
runs-on: ubuntu-latest
6354
strategy:
6455
matrix:
6556
python-version: ["3.7", "3.8"]
66-
os:
67-
- name: Linux
68-
runs-on: ubuntu-latest
69-
python_platform: linux
70-
#- name: Windows
71-
# runs-on: windows-latest
72-
# python_platform: win32
73-
- name: macOS
74-
runs-on: macos-latest
75-
python_platform: darwin
57+
7658
name: "Python ${{ matrix.python-version }}"
7759
steps:
7860
- uses: actions/checkout@v2

0 commit comments

Comments
 (0)