From 210416bb0dc4df72a783ed2a0e7f08abfec313e0 Mon Sep 17 00:00:00 2001 From: Stefan Hellander Date: Wed, 5 Jun 2024 15:27:58 +0200 Subject: [PATCH] Added 3.12 to test matrix (won't pass until we have released version that supports 3.12) --- .github/workflows/integration-tests.yaml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/integration-tests.yaml b/.github/workflows/integration-tests.yaml index 44bb3d008..19aa20593 100644 --- a/.github/workflows/integration-tests.yaml +++ b/.github/workflows/integration-tests.yaml @@ -1,14 +1,14 @@ name: "integration tests" -on: +on: push: branches: - - master - - develop - - 'release/**' + - master + - develop + - "release/**" pull_request: branches: - - '**' + - "**" jobs: integration-tests: @@ -17,7 +17,7 @@ jobs: to_test: - "mnist-keras numpyhelper" - "mnist-pytorch numpyhelper" - python_version: ["3.8","3.9","3.10", "3.11"] + python_version: ["3.8", "3.9", "3.10", "3.11", "3.12"] os: - ubuntu-22.04 runs-on: ${{ matrix.os }} @@ -28,7 +28,7 @@ jobs: - uses: actions/setup-python@v4 with: python-version: ${{ matrix.python_version }} - + - name: run ${{ matrix.to_test }} run: .ci/tests/examples/run.sh ${{ matrix.to_test }}