From 8e430a6e7429649a56c1e145cc54f819c00c25d4 Mon Sep 17 00:00:00 2001 From: Marta Medio Date: Thu, 27 Feb 2025 12:03:06 +0100 Subject: [PATCH] Create testing.yml --- .github/workflows/testing.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .github/workflows/testing.yml diff --git a/.github/workflows/testing.yml b/.github/workflows/testing.yml new file mode 100644 index 000000000..cb5730a56 --- /dev/null +++ b/.github/workflows/testing.yml @@ -0,0 +1,26 @@ +name: Testing GraalVM + +on: + pull_request + +jobs: + testing: + runs-on: ubuntu-latest + name: Testing + steps: + - name: Set up JDK 17 + uses: actions/setup-java@v4 + with: + java-version: '17' + distribution: 'temurin' + + - name: Set up JDK 21 GraalVM + uses: actions/setup-graalvm@v1.2.3 + with: + java-version: 21 + distribution: 'graalvm-community' + + - name: Testing + run: | + echo "Hello" +