8000 Add Mac and Win to PR testing pipeline · ramdesh/server-client-python@1ea39c2 · GitHub
[go: up one dir, main page]

Skip to content

Commit 1ea39c2

Browse files
committed
Add Mac and Win to PR testing pipeline
Also add support for Pythong 3.10 RC
1 parent 6ebf334 commit 1ea39c2

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

.github/workflows/run-tests.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,21 @@
1-
name: Python package
1+
name: Python tests
22

33
on: [push]
44

55
jobs:
66
build:
7-
8-
runs-on: ubuntu-latest
97
strategy:
108
fail-fast: false
119
matrix:
12-
python-version: [3.5, 3.6, 3.7, 3.8, 3.9]
10+
os: [ubuntu-latest, macos-latest, windows-latest]
11+
python-version: [3.5, 3.6, 3.7, 3.8, 3.9, 3.10.0-rc.2]
12+
13+
runs-on: ${{ matrix.os }}
1314

1415
steps:
1516
- uses: actions/checkout@v2
1617

17-
- name: Set up Python ${{ matrix.python-version }}
18+
- name: Set up Python ${{ matrix.python-version }} on ${{ matrix.os }}
1819
uses: actions/setup-python@v2
1920
with:
2021
python-version: ${{ matrix.python-version }}

0 commit comments

Comments
 (0)
0