We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c309089 commit 605bc74Copy full SHA for 605bc74
.github/workflows/python-publish.yml
@@ -10,12 +10,15 @@ on:
10
jobs:
11
deploy:
12
runs-on: ubuntu-latest
13
+ strategy:
14
+ matrix:
15
+ python-version: [2.7, 3.6]
16
steps:
17
- uses: actions/checkout@v2
- - name: Set up Python
18
+ - name: Set up Python ${{ matrix.python-version }}
19
uses: actions/setup-python@v2
20
with:
- python-version: '3.x'
21
+ python-version: ${{ matrix.python-version }}
22
- name: Install dependencies
23
run: |
24
python -m pip install --upgrade pip
0 commit comments