minor formatting and quoting in the output, killed some more codacy w… #558
Workflow file for this run
This file contains hidden or 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: Development branches | |
on: | |
push: | |
branches: | |
- '*' | |
- '**/*' | |
- '!master' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Set up JDK | |
uses: actions/setup-java@v3 | |
with: | |
java-version: 17 | |
distribution: zulu | |
cache: maven | |
- name: Prepare Maven Wrapper | |
run: chmod +x ./mvnw | |
- name: Build with Maven | |
run: ./mvnw clean verify -U -B -T4 | |
# - name: Upload test coverage to Codacy | |
# if: github.event_name == 'push' && github.actor != 'dependabot[bot]' | |
# run: bash <(curl -Ls https://coverage.codacy.com/get.sh) | |
# env: | |
# CODACY_PROJECT_TOKEN: "${{secrets.CODACY_PROJECT_TOKEN}}" |