deps(org.assertj:assertj-core): update dependency to v3.25.0 #102
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build and verify | |
on: | |
pull_request: | |
branches: [ v3 ] | |
push: | |
branches: | |
- '*' | |
paths-ignore: | |
- '**/*.md' | |
- '**/renovate.json' | |
workflow_dispatch: | |
jobs: | |
build-and-test: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
# https://docs.github.com/en/actions/using-jobs/choosing-the-runner-for-a-job | |
os: [ ubuntu-22.04, windows-2022, macos-12 ] | |
jvm: [ 11, 17, 21 ] | |
# https://github.com/actions | |
# https://github.com/marketplace?type=actions | |
steps: | |
- name: Checkout project | |
uses: actions/[email protected] | |
- name: Setup JVM ${{ matrix.jvm }} | |
uses: actions/[email protected] | |
with: | |
distribution: 'temurin' | |
java-version: ${{ matrix.jvm }} | |
# https://github.com/marketplace/actions/gradle-build-action | |
- name: Setup Gradle | |
uses: gradle/[email protected] | |
with: | |
# The Gradle wrapper's version (already the default, putting it here to clarity) | |
cache-read-only: ${{ github.ref != 'refs/heads/main' && github.ref != 'refs/heads/v3' }} | |
gradle-home-cache-cleanup: true | |
gradle-home-cache-includes: | | |
caches | |
notifications | |
jdks | |
gradle-version: wrapper | |
- name: Build | |
run: ./gradlew build -P kotlin.jvmToolchain=${{ matrix.jvm }} | |
jmh: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ ubuntu-22.04 ] | |
jvm: [ 11, 17, 21 ] | |
steps: | |
- name: Checkout project | |
uses: actions/[email protected] | |
- name: Setup JVM ${{ matrix.jvm }} | |
uses: actions/[email protected] | |
with: | |
distribution: 'temurin' | |
java-version: ${{ matrix.jvm }} | |
# https://github.com/marketplace/actions/gradle-build-action | |
- name: Setup Gradle | |
uses: gradle/[email protected] | |
with: | |
# The Gradle wrapper's version (already the default, putting it here to clarity) | |
cache-read-only: ${{ github.ref != 'refs/heads/main' && github.ref != 'refs/heads/v3' }} | |
gradle-home-cache-cleanup: true | |
gradle-home-cache-includes: | | |
caches | |
notifications | |
jdks | |
gradle-version: wrapper | |
- name: Build | |
run: ./gradlew jmh -P kotlin.jvmToolchain=${{ matrix.jvm }} |