Skip to content

Fix broken tests and automate maven publish (#7) #66

Fix broken tests and automate maven publish (#7)

Fix broken tests and automate maven publish (#7) #66

Workflow file for this run

name: Java CI with Maven
on: push
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up JDK 8
uses: actions/setup-java@v3
with:
java-version: '8'
distribution: 'temurin'
cache: maven
- name: Build with Maven
run: mvn -B package --file pom.xml
# - name: Lint Code Base
# uses: github/super-linter@v4
# env:
# VALIDATE_ALL_CODEBASE: false
# DEFAULT_BRANCH: main
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- uses: actions/upload-artifact@v2
if: failure()
with:
name: build-reports
path: |
target