Skip to content

Revised component catalogue #61

Revised component catalogue

Revised component catalogue #61

Workflow file for this run

# This workflow will build a Java project with Maven
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
name: Maven
on:
push:
branches: [ main, Dev-Arcade ]
pull_request:
branches: [ main, Dev-Arcade ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK 17
uses: actions/setup-java@v1
with:
java-version: 17
- name: Build with Maven
run: mvn -B package --file pom.xml -DskipTests
- name: Make staging directory
run: mkdir staging
- name: Copy JAR to staging
run: cp target/distribution/* staging
- name: Upload
uses: actions/upload-artifact@v2
with:
name: Package
path: staging
- name: Test
run: mvn --batch-mode -Dmaven.test.failure.ignore=true test
- name: Report
uses: dorny/test-reporter@v1
if: always()
with:
name: Maven Tests
path: target/surefire-reports/*.xml
reporter: java-junit
fail-on-error: true