From 595d8479790f9b312763431f558f4ec9e58c85ef Mon Sep 17 00:00:00 2001 From: Guillaume Ayoub Date: Sat, 5 Aug 2023 10:44:39 +0200 Subject: [PATCH] =?UTF-8?q?Don=E2=80=99t=20launch=20tests=20on=20each=20ve?= =?UTF-8?q?rsion=20of=20Python?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/tests.yml | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 998132ff..23a27b8f 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -6,15 +6,9 @@ jobs: name: ${{ matrix.os }} - ${{ matrix.python-version }} runs-on: ${{ matrix.os }} strategy: - fail-fast: false matrix: os: [ubuntu-latest] - python-version: - - "3.7" - - "3.8" - - "3.9" - - "3.10" - - "3.11" + python-version: ['3.7', '3.11'] steps: - uses: actions/checkout@v3 with: