From 28b8edd6f6d1de53da5cb002662aef8c3f20b79a Mon Sep 17 00:00:00 2001 From: James Zow Date: Tue, 26 Sep 2023 03:05:03 +0800 Subject: [PATCH] Update maven.yml Add windows and macos check --- .github/workflows/maven.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index 5d254533..c6f23056 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -17,7 +17,11 @@ on: jobs: build: - runs-on: ubuntu-latest + runs-on: ${{ matrix.os }} + + strategy: + matrix: + os: [windows-latest, macos-latest, ubuntu-latest] steps: - uses: actions/checkout@v3