Force language search even more #206
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: Maven Tests | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
java: [ 11, 13 ] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up JDK for java ${{matrix.java}} | |
uses: actions/setup-java@v1 | |
with: | |
java-version: ${{matrix.java}} | |
- name: Test with Maven, Java ${{matrix.java}} | |
run: mvn -B package --file pom.xml -P dist |