Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Java CI with Maven
name: Build and test on latest Ubuntu and Java 11

on:
push:
Expand Down
27 changes: 27 additions & 0 deletions .github/workflows/windows_java-11.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Build and test on latest Windows and Java 11

on:
push:
branches: master
pull_request:
branches: master
workflow_dispatch:
branches: [ $default-branch ]

jobs:
build:

runs-on: windows-latest

steps:
- uses: actions/checkout@v2
- name: Set up JDK 11
uses: actions/setup-java@v2
with:
java-version: '11'
distribution: 'adopt'
- name: Grant execute permission for mvnw
run: chmod +x mvnw
- name: Build with Maven
run: ./mvnw -B package --file pom.xml