From 8ae436915575f2efefdef2e289cd04d667c9c6a8 Mon Sep 17 00:00:00 2001 From: Aryan Iyappan <69184573+aryan340@users.noreply.github.com> Date: Thu, 19 Aug 2021 12:16:13 +0530 Subject: [PATCH] remove build matrix wherever not needed --- .github/workflows/tests.yml | 14 +++----------- 1 file changed, 3 insertions(+), 11 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index b7cb3fdb..39f15ef4 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -56,11 +56,7 @@ jobs: coveralls: # check coverage increase/decrease needs: tests - runs-on: ${{ matrix.os }} - strategy: - matrix: - include: - - { os: ubuntu-latest } + runs-on: "ubuntu-latest" steps: - name: Coveralls Finished uses: AndreMiras/coveralls-python-action@develop @@ -69,17 +65,13 @@ jobs: deploy: # builds and publishes to PyPi - runs-on: ${{ matrix.os }} - strategy: - matrix: - include: - - { python: '3.7', os: ubuntu-latest } + runs-on: "ubuntu-latest" steps: - uses: actions/checkout@v2 - name: Set up Python uses: actions/setup-python@v2 with: - python-version: ${{ matrix.python }} + python-version: "3.7" - name: Install dependencies run: | python -m pip install --upgrade pip