From 616dc2c55deb64ffe9006f0ea38846f1e0cc0e1e Mon Sep 17 00:00:00 2001 From: Oliver Lietz Date: Mon, 14 Aug 2023 20:27:10 +0200 Subject: [PATCH] #1077 Set up CI workflows MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit run build on Windows also – fix matrix build --- .github/workflows/maven.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index 4470a55f0..8b0dd4c26 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -8,10 +8,11 @@ on: jobs: build: - runs-on: [ "ubuntu-latest", "windows-latest" ] strategy: matrix: java-version: [ 8 ] + os: [ubuntu-latest, windows-latest] + runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v3 - uses: actions/setup-java@v3