From ae44f9d0f44e84219a38fadcaa6a1ca1d74cb2a4 Mon Sep 17 00:00:00 2001 From: Sergio Abad Date: Thu, 10 Oct 2024 00:17:17 +0200 Subject: [PATCH] run tests in series --- .github/workflows/lint-and-test.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/lint-and-test.yml b/.github/workflows/lint-and-test.yml index c85dded..02766ee 100644 --- a/.github/workflows/lint-and-test.yml +++ b/.github/workflows/lint-and-test.yml @@ -39,6 +39,7 @@ jobs: test-py37: runs-on: ubuntu-latest + needs: [test-py38] container: image: python:3.7 steps: @@ -51,6 +52,7 @@ jobs: test-py38: runs-on: ubuntu-latest + needs: [test-py39] container: image: python:3.8 steps: @@ -63,6 +65,7 @@ jobs: test-py39: runs-on: ubuntu-latest + needs: [test-py310] container: image: python:3.9 steps: @@ -75,6 +78,7 @@ jobs: test-py310: runs-on: ubuntu-latest + needs: [test-py311] container: image: python:3.10 steps: @@ -87,6 +91,7 @@ jobs: test-py311: runs-on: ubuntu-latest + needs: [test-py312] container: image: python:3.11 steps: