Release 2.1.6 #844
Workflow file for this run
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: pull-request | |
on: [pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
name: Check PR integrity | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-java@v1 | |
with: | |
java-version: "11" | |
architecture: x64 | |
- name: Cache Maven packages | |
uses: actions/cache@v1 | |
with: | |
path: ~/.m2/repository | |
key: ${{ runner.os }}-maven2-${{ hashFiles('**/pom.xml') }} | |
- name: Check Copyright | |
run: mvn license:check | |
- name: Build | |
run: | | |
mvn -B clean package -DskipTests -DskipITs -DdockerCompose.skip -Ddockerfile.skip --file pom.xml | |
- uses: codecov/codecov-action@v1 | |
with: | |
token: ${{ secrets.CODECOV_ACCESS_TOKEN }} |