Skip to content

Commit 2ac85f5

Browse files
authored
Merge pull request #56 from has2k1/macos-windows-testing
Add macos and windows ci testing
2 parents 498c566 + 1f94010 commit 2ac85f5

1 file changed

Lines changed: 11 additions & 2 deletions

File tree

.github/workflows/tests.yml

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,19 @@ on:
1111
jobs:
1212
tests:
1313
name: "Tests"
14-
runs-on: ubuntu-latest
14+
runs-on: ${{ matrix.os }}
1515
strategy:
1616
matrix:
17-
python-version: ['3.7', '3.8', '3.9', '3.10']
17+
include:
18+
- os: 'ubuntu-latest'
19+
python-version: '3.7'
20+
- os: 'macos-latest'
21+
python-version: '3.8'
22+
- os: 'windows-latest'
23+
python-version: '3.9'
24+
- os: 'ubuntu-latest'
25+
python-version: '3.10'
26+
1827
steps:
1928
- uses: actions/checkout@v2
2029
- uses: actions/setup-python@v2

0 commit comments

Comments
 (0)