diff options
author | Simon Steiner <ssteiner@apache.org> | 2023-04-27 09:56:19 +0100 |
---|---|---|
committer | Simon Steiner <ssteiner@apache.org> | 2023-04-27 09:56:19 +0100 |
commit | 1323c2e3511eb23c7dd9b8fb74463af707fa972d (patch) | |
tree | 042fc20bf2618a0e985d7aae57e49d71c350472a /.github | |
parent | 387218dde1dcc8b7bf68065ae5b78411c45a89d6 (diff) | |
download | xmlgraphics-fop-1323c2e3511eb23c7dd9b8fb74463af707fa972d.tar.gz xmlgraphics-fop-1323c2e3511eb23c7dd9b8fb74463af707fa972d.zip |
Run CI on windows
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/maven-windows.yml | 30 |
1 files changed, 30 insertions, 0 deletions
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 |