Skip to content

Commit c0ddbbf

Browse files
committed
update workflow matrix
1 parent 467b1f8 commit c0ddbbf

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

.github/workflows/tests.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,10 @@ jobs:
5757
# check coverage increase/decrease
5858
needs: tests
5959
runs-on: ${{ matrix.os }}
60+
strategy:
61+
matrix:
62+
include:
63+
- { os: ubuntu-latest }
6064
steps:
6165
- name: Coveralls Finished
6266
uses: AndreMiras/coveralls-python-action@develop
@@ -66,12 +70,16 @@ jobs:
6670
deploy:
6771
# builds and publishes to PyPi
6872
runs-on: ${{ matrix.os }}
73+
strategy:
74+
matrix:
75+
include:
76+
- { python: '3.7', os: ubuntu-latest }
6977
steps:
7078
- uses: actions/checkout@v2
7179
- name: Set up Python
7280
uses: actions/setup-python@v2
7381
with:
74-
python-version: '3.7'
82+
python-version: ${{ matrix.python }}
7583
- name: Install dependencies
7684
run: |
7785
python -m pip install --upgrade pip

0 commit comments

Comments
 (0)