Skip to content

Commit

Permalink
#266 Create a workflow for windows build
Browse files Browse the repository at this point in the history
  • Loading branch information
luigi-asprino committed Nov 15, 2023
1 parent 41a1b24 commit dff3dfe
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/maven_Java17_windows.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# This workflow will build a Java project with Maven
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven

name: Java 17

on:
push:
branches: [ v0.9-DEV ]
pull_request:
branches: [ v0.9-DEV ]

jobs:
build:

runs-on: windows-latest

steps:
- uses: actions/checkout@v2
- name: Set up JDK 17
uses: actions/setup-java@v1
with:
java-version: 17
- name: Clean, install, and test
run: mvn clean install

0 comments on commit dff3dfe

Please sign in to comment.