From a6518b95f97e7a626ad5ceda2ccf9211a42f3b9f Mon Sep 17 00:00:00 2001 From: Florian Schlag Date: Sun, 21 Apr 2024 15:26:58 +0200 Subject: [PATCH] use java matrix --- .github/workflows/pride-ci.yaml | 4 ++-- ...ings-for-travis.xml => mvnsettings-for-github-actions.xml} | 0 2 files changed, 2 insertions(+), 2 deletions(-) rename config/{mvnsettings-for-travis.xml => mvnsettings-for-github-actions.xml} (100%) diff --git a/.github/workflows/pride-ci.yaml b/.github/workflows/pride-ci.yaml index 697bd5e..300dbc8 100644 --- a/.github/workflows/pride-ci.yaml +++ b/.github/workflows/pride-ci.yaml @@ -10,7 +10,7 @@ jobs: strategy: matrix: - java: [8, 11, 17] + java: [11, 17] database: [hsql, sqlite] steps: @@ -22,7 +22,7 @@ jobs: distribution: 'temurin' cache: maven - name: Build with Maven with database ${{ matrix.database }} - run: mvn clean test -B -P travis -Duser.name=${{ matrix.database }} --settings config/mvnsettings-for-travis.xml + run: mvn clean test -B -P travis -Duser.name=${{ matrix.database }} --settings config/mvnsettings-for-github-actions.xml # Optional: Uploads the full dependency graph to GitHub to improve the quality of Dependabot alerts this repository can receive - name: Update dependency graph diff --git a/config/mvnsettings-for-travis.xml b/config/mvnsettings-for-github-actions.xml similarity index 100% rename from config/mvnsettings-for-travis.xml rename to config/mvnsettings-for-github-actions.xml