Skip to content

Commit ea6979e

Browse files
authored
Add more OS (windows, mac-os) support (#246)
* Add more OS support
1 parent e44cbc8 commit ea6979e

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

.github/workflows/main.yml renamed to .github/workflows/ci.yml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: main
1+
name: CI
22
on:
33
push:
44
branches:
@@ -8,12 +8,19 @@ on:
88
- master
99
jobs:
1010
test:
11-
runs-on: "ubuntu-latest"
1211
timeout-minutes: 30
1312
strategy:
1413
fail-fast: false
1514
matrix:
1615
python-version: ["3.6", "3.7", "3.8", "3.9", "pypy3"]
16+
os: [ubuntu-latest, macos-latest, windows-latest]
17+
exclude:
18+
- os: macos-latest
19+
python-version: "pypy3"
20+
- os: windows-latest
21+
python-version: "pypy3"
22+
runs-on: ${{ matrix.os }}
23+
name: "${{ matrix.os }} Python: ${{ matrix.python-version }}"
1724
steps:
1825
- uses: actions/checkout@v2
1926
with:

0 commit comments

Comments
 (0)