Use isEmpty() to check whether collection is empty or not in SourceM… #655
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Windows Maven Build | |
env: | |
MAVEN_ARGS: -B -C -V -ntp -Dhttp.keepAlive=false -e | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
jobs: | |
build: | |
name: Windows Java ${{ matrix.java }} Maven | |
runs-on: windows-latest | |
strategy: | |
matrix: | |
java: [8, 11] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Setup Java | |
uses: actions/setup-java@v1 | |
with: | |
java-version: ${{ matrix.java }} | |
- name: Build Project | |
run: mvn %MAVEN_ARGS% clean install |