From 5fbd5ca35f2e552238ee7bb9c7fb4c82119114b8 Mon Sep 17 00:00:00 2001 From: Jean-Marie Burel Date: Fri, 15 Mar 2024 18:47:34 +0000 Subject: [PATCH] build with various Python version --- .github/workflows/source_build.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.github/workflows/source_build.yml b/.github/workflows/source_build.yml index 9941f3743e1..8e9d1c27203 100644 --- a/.github/workflows/source_build.yml +++ b/.github/workflows/source_build.yml @@ -12,15 +12,22 @@ jobs: build_bf: [false] build_zarr: [false] build_snapshot: [false] + python-version: + - '3.10' + - '3.11' + - '3.12' name: Build OMERO from source runs-on: ubuntu-22.04 env: ICE_HOME: /opt/ice-3.6.5 steps: - uses: actions/checkout@v4 + - uses: actions/setup-python@v4 + with: + python-version: ${{ matrix.python-version }} - name: Install Ice and Ice python binding if: matrix.build_snapshot - uses: ome/action-ice@v3 + uses: jburel/action-ice@v3 - name: Set up Gradle 6.8.3 if: matrix.build_snapshot uses: gradle/gradle-build-action@v2