Skip to content

Bump kotlin.version from 1.9.0 to 1.9.10 #43

Bump kotlin.version from 1.9.0 to 1.9.10

Bump kotlin.version from 1.9.0 to 1.9.10 #43

Workflow file for this run

name: AxonIQ Code Samples
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java-version: [ 17 ]
name: Build and Test on JDK ${{ matrix.java-version }}
steps:
- name: Checkout code
uses: actions/checkout@v3
- 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: Cache .m2
uses: actions/cache@v3
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven
- name: Build and Verify
run: ./mvnw -B -U -Dstyle.color=always clean verify