Skip to content

Upgrade package version to 1.3.0-SNAPSHOT (#9) #70

Upgrade package version to 1.3.0-SNAPSHOT (#9)

Upgrade package version to 1.3.0-SNAPSHOT (#9) #70

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