Skip to content

Fixed Improper Handling of Length Parameter Inconsistency in org.apac… #141

Fixed Improper Handling of Length Parameter Inconsistency in org.apac…

Fixed Improper Handling of Length Parameter Inconsistency in org.apac… #141

# This is a custom workflow to call checkstyle on Java code.
name: Publish Surefire Reports
# Controls when the action will run.
on:
# Triggers the workflow on push or pull request events but only for the maste$
push:
branches: [ master ]
pull_request:
branches: [ master ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in$
jobs:
build:
name: Run Tests
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v1
- uses: actions/setup-java@v2
with:
distribution: 'adopt' # See 'Supported distributions' for available options
java-version: '11'
- name: Run Tests
run: mvn test --batch-mode --fail-at-end
- name: Publish Test Report
if: ${{ always() }}
uses: scacap/[email protected]
with:
github_token: ${{ secrets.GITHUB_TOKEN }}