From 042652c9da96f65bbdcb2e8143c9644c806169c2 Mon Sep 17 00:00:00 2001 From: "Marcel S. Henselin" Date: Wed, 11 Mar 2026 09:56:15 +0100 Subject: [PATCH] test: try action [skip ci] --- .github/actions/acc_test/action.yaml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/.github/actions/acc_test/action.yaml b/.github/actions/acc_test/action.yaml index ccd08969..11c9c178 100644 --- a/.github/actions/acc_test/action.yaml +++ b/.github/actions/acc_test/action.yaml @@ -89,12 +89,24 @@ runs: fi echo "::endgroup::" + - name: Install JAVA + shell: bash + run: echo "::group::java install" + - name: Setup JAVA uses: actions/setup-java@v5 with: distribution: 'temurin' # See 'Supported distributions' for available options java-version: '21' + - name: Install JAVA + shell: bash + run: echo "::endgroup::" + + - name: Install GO + shell: bash + run: echo "::group::go install" + - name: Install Go ${{ inputs.go-version }} uses: actions/setup-go@v6 with: @@ -102,6 +114,10 @@ runs: check-latest: true go-version-file: 'go.mod' + - name: Install GO + shell: bash + run: echo "::endgroup::" + - name: Determine GOMODCACHE shell: bash id: goenv