Skip to content

Merge pull request #222 from AxonIQ/29d1dependabot/maven/maven-depend… #248

Merge pull request #222 from AxonIQ/29d1dependabot/maven/maven-depend…

Merge pull request #222 from AxonIQ/29d1dependabot/maven/maven-depend… #248

Workflow file for this run

name: GiftCard Demo
on:
pull_request:
push:
branches:
- main
- master
paths-ignore:
- 'docs/**'
- '.github/workflows/docs.yml'
jobs:
build:
name: Test and Build on JDK ${{ matrix.java-version }}
runs-on: ubuntu-latest
continue-on-error: true # do not fail the whole job if one of the steps fails
strategy:
matrix:
include:
- java-version: 17
fail-fast: false
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up JDK ${{ matrix.java-version }}
uses: actions/[email protected]
with:
distribution: 'zulu'
java-version: ${{ matrix.java-version }}
cache: "maven"
server-id: sonatype
server-username: MAVEN_USERNAME
server-password: MAVEN_PASSWORD
- name: Build
run: |
./mvnw -B -U clean verify