Bump io.airlift:packaging from 285 to 287 #953
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: ci | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
java: | |
- 21 | |
- 22 | |
- 23 | |
- 24-ea | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-java@v3 | |
with: | |
java-version: ${{ matrix.java }} | |
distribution: temurin | |
- name: Maven Download | |
run: ./mvnw -V -B dependency:go-offline | |
- name: Maven Install | |
run: ./mvnw clean install -B -P ci |