From bb9d5cbe501f334c52f2553677012e7a943c986c Mon Sep 17 00:00:00 2001 From: Lukas Puehringer Date: Mon, 21 Nov 2022 12:40:51 +0100 Subject: [PATCH] ci: run py311-test-gpg-fails tox env in GHA Only tox envs that are in the format `py` are run automatically in CI, all others need to be enabled explicitly. In #437 a new tox env 'py311-test-gpg-fails' was added but not enabled in CI, this is changed in this patch. Signed-off-by: Lukas Puehringer --- .github/workflows/ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 60e2ab13..7c27515f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -27,6 +27,9 @@ jobs: - python-version: "3.11" os: ubuntu-latest toxenv: py311-no-gpg + - python-version: "3.11" + os: ubuntu-latest + toxenv: py311-test-gpg-fails - python-version: "3.8" os: ubuntu-latest toxenv: lint @@ -51,4 +54,3 @@ jobs: - name: Run tox run: tox -e ${{ matrix.toxenv }} -