From 88f279881afa6c24b045c91f8156549c402dd644 Mon Sep 17 00:00:00 2001 From: Gui-FernandesBR Date: Sun, 29 Oct 2023 14:49:52 -0300 Subject: [PATCH] TST: update workflow to run on new python 3.12 --- .github/workflows/test_pytest.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test_pytest.yaml b/.github/workflows/test_pytest.yaml index 7ca507dde..8b7bf15b9 100644 --- a/.github/workflows/test_pytest.yaml +++ b/.github/workflows/test_pytest.yaml @@ -7,13 +7,13 @@ on: - "**.py" jobs: - fail_if_pull_request_is_draft: + fail_if_pr_is_draft: if: github.event.pull_request.draft == true runs-on: ubuntu-18.04 steps: - name: Fails in order to indicate that pull request needs to be marked as ready to review and unit tests workflow needs to pass. run: exit 1 - run_pytest_and_doctest: + pytest_and_doctest: runs-on: ${{ matrix.os }} strategy: matrix: @@ -23,7 +23,7 @@ jobs: - windows-latest python-version: - 3.8 - - 3.11 + - 3.12 steps: - uses: actions/checkout@v2 - name: Set up Python ${{ matrix.python-version }}