updating poms for 12.0.1-SNAPSHOT development #34
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: CI | |
'on': | |
push: | |
branches: | |
- develop | |
pull_request: | |
branches: | |
- develop | |
jobs: | |
unit-test: | |
name: Unit Tests | |
runs-on: ubuntu-latest | |
steps: | |
- name: Git checkout | |
uses: actions/checkout@v2 | |
- name: Use Java 11 | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 11 | |
- name: 'Unit Tests with Java 11' | |
run: | | |
mvn install -DskipTests=true -Dmaven.javadoc.skip=true -B -V | |
mvn test -B | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
COVERALLS_TOKEN: ${{ secrets.COVERALLS_TOKEN }} |