From 9312b1bac45d5788db84a806eb38d28daf0bfcce Mon Sep 17 00:00:00 2001 From: Javier Buzzi Date: Wed, 4 Jun 2025 09:54:42 -0400 Subject: [PATCH] Simplify tox environment --- .github/workflows/main.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 74c5f63e..921f81ca 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -25,6 +25,8 @@ jobs: timeout-minutes: 15 permissions: contents: read + env: + TOXENV: ${{ matrix.name }} steps: - uses: actions/checkout@v4 with: @@ -53,9 +55,7 @@ jobs: pip install tox==4.26.0 - name: Run tox - run: tox -e "${MATRIX_NAME}" - env: - MATRIX_NAME: ${{ matrix.name }} + run: tox - name: Report coverage if: contains(matrix.name, 'coverage')