From 4dbece2f7ee0f1501a1969d87b64168b0a1af41f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gregor=20Jer=C5=A1e?= Date: Wed, 17 Jul 2024 19:03:58 +0200 Subject: [PATCH] Simplify ci.yml file --- .github/workflows/ci.yml | 17 +++++------------ 1 file changed, 5 insertions(+), 12 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3427ccb17..98f674068 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -26,20 +26,15 @@ jobs: fail-fast: false matrix: include: - - python: "3.11" - toxenv: "py311" + - toxenv: "py311" description: "Unit tests (Python 3.11)" - - python: "3.12" - toxenv: "py312" + - toxenv: "py312" description: "Unit tests (Python 3.12)" - - python: "3.12" - toxenv: "linters" + - toxenv: "linters" description: "Linters (Python 3.12)" - - python: "3.12" - toxenv: "packaging" + - toxenv: "packaging" description: "Packaging (Python 3.12)" - - python: "3.12" - toxenv: "migrations" + - toxenv: "migrations" description: "Migrations (Python 3.12)" name: ${{ matrix.description }} @@ -79,8 +74,6 @@ jobs: - name: ${{ matrix.description }} run: | - # Make sure `python` refers to the tox environment's Python - export PATH=`pwd`/.tox/${{ matrix.toxenv }}/bin:$PATH tox -e ${{ matrix.toxenv }} build: