Skip to content

Merge branch '8.11' of https://github.com/vladimir-bukhtoyarov/bucket… #193

Merge branch '8.11' of https://github.com/vladimir-bukhtoyarov/bucket…

Merge branch '8.11' of https://github.com/vladimir-bukhtoyarov/bucket… #193

Workflow file for this run

name: CI
on:
pull_request:
branches:
- master
push:
branches:
- master
jobs:
build:
strategy:
matrix:
# java: [ '8', '11' ]
java: [ '17' ]
os: [ 'ubuntu-latest' ]
runs-on: ${{ matrix.os }}
timeout-minutes: 30
steps:
- uses: actions/checkout@v4
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v4
with:
java-version: ${{ matrix.java }}
distribution: 'zulu'
cache: 'maven'
- name: Build
run: ./mvnw --no-transfer-progress -B clean package