Skip to content

ci: add GitHub Actions workflows for build and publishing #3

ci: add GitHub Actions workflows for build and publishing

ci: add GitHub Actions workflows for build and publishing #3

Workflow file for this run

name: Check
on:
pull_request:
branches: [ master ]
jobs:
build:

Check failure on line 9 in .github/workflows/check.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/check.yml

Invalid workflow file

You have an error in your yaml syntax on line 9
runs-on: ubuntu-latest
- name: Setup Maven
uses: s4u/[email protected]
with:
java-version: 8
java-distribution: temurin
maven-version: 3.6.3
- name: Maven
# Additional args to work around Github Runner issue (on Azure)
# see https://github.com/actions/runner-images/issues/1499#issuecomment-689467080
run: mvn clean install -Dmaven.test.failure.ignore=true -Dmaven.wagon.httpconnectionManager.ttlSeconds=60
# https://github.com/marketplace/actions/junit-report-action
# Note: Currently no tests
# - name: Publish Test Report
# uses: mikepenz/action-junit-report@v3
# if: always() # always run even if the previous step fails
# with:
# report_paths: '*/target/surefire-reports/*.xml'