Skip to content

Commit fde0fd4

Browse files
authored
updated github workflows
1 parent 013b26d commit fde0fd4

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

.github/workflows/publish.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,15 @@ on:
77
jobs:
88
deploy:
99
runs-on: ubuntu-latest
10+
strategy:
11+
matrix:
12+
python: [3.6, 3.7, 3.8, 3.9, '3.10']
1013
steps:
1114
- uses: actions/checkout@v1
1215
- name: Set up Python
1316
uses: actions/setup-python@v1
1417
with:
15-
python-version: "3.x"
18+
python-version: ${{ matrix.python }}
1619
- name: Install Tox and any other packages
1720
run: |
1821
python -m pip install --upgrade pip

.github/workflows/test.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,7 @@ jobs:
77
runs-on: ubuntu-latest
88
strategy:
99
matrix:
10-
python: [3.6, 3.7, 3.8, 3.9, 3.10]
11-
10+
python: [3.6, 3.7, 3.8, 3.9, '3.10']
1211
steps:
1312
- uses: actions/checkout@v1
1413
- name: Setup Python

0 commit comments

Comments
 (0)