remove build matrix wherever not needed

This commit is contained in:
Aryan Iyappan 2021-08-19 12:16:13 +05:30
parent c0ddbbfaf4
commit 8ae4369155

View File

@ -56,11 +56,7 @@ jobs:
coveralls: coveralls:
# check coverage increase/decrease # check coverage increase/decrease
needs: tests needs: tests
runs-on: ${{ matrix.os }} runs-on: "ubuntu-latest"
strategy:
matrix:
include:
- { os: ubuntu-latest }
steps: steps:
- name: Coveralls Finished - name: Coveralls Finished
uses: AndreMiras/coveralls-python-action@develop uses: AndreMiras/coveralls-python-action@develop
@ -69,17 +65,13 @@ jobs:
deploy: deploy:
# builds and publishes to PyPi # builds and publishes to PyPi
runs-on: ${{ matrix.os }} runs-on: "ubuntu-latest"
strategy:
matrix:
include:
- { python: '3.7', os: ubuntu-latest }
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
- name: Set up Python - name: Set up Python
uses: actions/setup-python@v2 uses: actions/setup-python@v2
with: with:
python-version: ${{ matrix.python }} python-version: "3.7"
- name: Install dependencies - name: Install dependencies
run: | run: |
python -m pip install --upgrade pip python -m pip install --upgrade pip