We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c1045da commit 971a7aaCopy full SHA for 971a7aa
.github/workflows/build.yml
@@ -8,18 +8,12 @@ on:
8
jobs:
9
build_wheels:
10
name: build wheel
11
- runs-on: ${{ matrix.os }}
12
- strategy:
13
- matrix:
14
- os: [ ubuntu-latest ]
15
- python-version: [ '3.x' ]
+ runs-on: ubuntu-latest
16
steps:
17
- name: checkout repository
18
uses: actions/checkout@v2
19
- name: install Python
20
uses: actions/setup-python@v2
21
- with:
22
- python-version: ${{ matrix.python-version }}
23
- name: build wheel
24
run: pip wheel . -w dist --no-deps
25
- name: save wheel
@@ -49,7 +43,7 @@ jobs:
49
43
runs-on: ${{ matrix.os }}
50
44
strategy:
51
45
matrix:
52
- os: [ ubuntu-latest, windows-latest, macos-latest ]
46
+ os: [ windows-latest, macos-latest ]
53
47
54
48
55
0 commit comments