Skip to content

Bump io.vavr:vavr from 0.10.5 to 0.11.0 (#244) #457

Bump io.vavr:vavr from 0.10.5 to 0.11.0 (#244)

Bump io.vavr:vavr from 0.10.5 to 0.11.0 (#244) #457

Workflow file for this run

name: build
on:
pull_request:
branches:
- main
push:
paths-ignore:
- '**.md'
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java: [ '11', '17', '19', '20' ]
architecture: [ 'x64' ]
name: Build with JDK ${{ matrix.java }} on ${{ matrix.architecture }}
steps:
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
- name: Setup JDK
uses: actions/setup-java@dded0888837ed1f317902acf8a20df0ad188d165 # v5.0.0
with:
distribution: 'zulu'
java-version: ${{ matrix.java }}
architecture: ${{ matrix.architecture }}
cache: 'maven'
- name: Build with Maven
run: mvn --no-transfer-progress --batch-mode verify