From 1323c2e3511eb23c7dd9b8fb74463af707fa972d Mon Sep 17 00:00:00 2001 From: Simon Steiner Date: Thu, 27 Apr 2023 09:56:19 +0100 Subject: [PATCH] Run CI on windows --- .github/workflows/maven-windows.yml | 30 +++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 .github/workflows/maven-windows.yml diff --git a/.github/workflows/maven-windows.yml b/.github/workflows/maven-windows.yml new file mode 100644 index 000000000..9f8f4b5c1 --- /dev/null +++ b/.github/workflows/maven-windows.yml @@ -0,0 +1,30 @@ +# This workflow will build a Java project with Maven, and cache/restore any dependencies to improve the workflow execution time +# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-java-with-maven + +name: Java CI with Maven on Windows + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + +jobs: + build: + + runs-on: windows-latest + + steps: + - uses: actions/checkout@v3 + - name: Set up JDK 8 + uses: actions/setup-java@v3 + with: + java-version: '8' + distribution: 'temurin' + cache: maven + - name: Build with Maven + run: mvn -B package checkstyle:check findbugs:check --file pom.xml + + # Optional: Uploads the full dependency graph to GitHub to improve the quality of Dependabot alerts this repository can receive + #- name: Update dependency graph + # uses: advanced-security/maven-dependency-submission-action@571e99aab1055c2e71a1e2309b9691de18d6b7d6 -- 2.39.5