From 63b303b04409327171fe97a8e6725e9a3eaad2c4 Mon Sep 17 00:00:00 2001 From: Chris Erwin Date: Tue, 28 Nov 2023 10:00:28 -0500 Subject: [PATCH] remove matrix until back on self-hosted --- .github/workflows/build.yaml | 22 ++++++++++++---------- 1 file changed, 12 insertions(+), 10 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index e3b5bd4..4baa969 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -5,15 +5,15 @@ on: [push] jobs: build: runs-on: ubuntu-latest - strategy: - matrix: - year: - - 2015 - - 2017 - - 2018 - - 2020 - - 2021 - - 2022 + # strategy: + # matrix: + # year: + # - 2015 + # - 2017 + # - 2018 + # - 2020 + # - 2021 + # - 2022 steps: - uses: actions/checkout@v3 @@ -27,5 +27,7 @@ jobs: pip install poetry poetry install - name: Unit tests + # run: | + # poetry run pytest tests/test_${{ matrix.year }}* run: | - poetry run pytest tests/test_${{ matrix.year }}* + poetry run pytest