Add access_token to log mask + throw error if non boolean string is p… #184
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_target: | |
types: [opened, synchronize, reopened] | |
branches: | |
- 'development' | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Setup java | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 1.8 | |
- name: Get version | |
run: | | |
VERSION=$(cat src/main/resources/version.txt) | |
echo "VERSION=$VERSION" >> $GITHUB_ENV | |
echo "Building $VERSION" | |
- name: Build | |
run: mvn --no-transfer-progress compile | |
- name: Test | |
run: mvn --no-transfer-progress test | |
- name: Package | |
run: mvn --no-transfer-progress package -DskipTests |