Skip to content

Commit 92dd893

Browse files
committed
Set up build matrix for python 2.7, 3.6, 3.7
1 parent ea9dc10 commit 92dd893

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

.github/workflows/pythonapp.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,15 @@ jobs:
66
build:
77

88
runs-on: ubuntu-latest
9-
9+
strategy:
10+
matrix:
11+
python: [2.7, 3.6, 3.7]
1012
steps:
1113
- uses: actions/checkout@v1
12-
- name: Set up Python 3.7
14+
- name: Set up Python
1315
uses: actions/setup-python@v1
1416
with:
15-
python-version: 3.7
17+
python-version: ${{ matrix.python }}
1618
- name: Install dependencies
1719
run: |
1820
python -m pip install --upgrade pip

0 commit comments

Comments
 (0)