Skip to content

Commit 8ae4369

Browse files
committed
remove build matrix wherever not needed
1 parent c0ddbbf commit 8ae4369

File tree

1 file changed

+3
-11
lines changed

1 file changed

+3
-11
lines changed

.github/workflows/tests.yml

Lines changed: 3 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -56,11 +56,7 @@ jobs:
5656
coveralls:
5757
# check coverage increase/decrease
5858
needs: tests
59-
runs-on: ${{ matrix.os }}
60-
strategy:
61-
matrix:
62-
include:
63-
- { os: ubuntu-latest }
59+
runs-on: "ubuntu-latest"
6460
steps:
6561
- name: Coveralls Finished
6662
uses: AndreMiras/coveralls-python-action@develop
@@ -69,17 +65,13 @@ jobs:
6965

7066
deploy:
7167
# builds and publishes to PyPi
72-
runs-on: ${{ matrix.os }}
73-
strategy:
74-
matrix:
75-
include:
76-
- { python: '3.7', os: ubuntu-latest }
68+
runs-on: "ubuntu-latest"
7769
steps:
7870
- uses: actions/checkout@v2
7971
- name: Set up Python
8072
uses: actions/setup-python@v2
8173
with:
82-
python-version: ${{ matrix.python }}
74+
python-version: "3.7"
8375
- name: Install dependencies
8476
run: |
8577
python -m pip install --upgrade pip

0 commit comments

Comments
 (0)