Update README.md #39
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 17 | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 17 | |
- name: 'Unit Tests with Java 17' | |
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 }} |