Skip to content

Merge pull request #449 from smallrye/release-2.1.1 #512

Merge pull request #449 from smallrye/release-2.1.1

Merge pull request #449 from smallrye/release-2.1.1 #512

Workflow file for this run

name: SmallRye Build
on:
push:
branches:
- main
paths-ignore:
- '.gitignore'
- 'CODEOWNERS'
- 'LICENSE'
- 'NOTICE'
- 'README*'
pull_request:
paths-ignore:
- '.gitignore'
- 'CODEOWNERS'
- 'LICENSE'
- 'NOTICE'
- 'README*'
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java: [
{ 'version': '17', 'opts': '' },
{ 'version': '21', 'opts': '' },
{ 'version': '22', 'opts': '' }
]
name: build with jdk ${{matrix.java.version}}
steps:
- uses: actions/checkout@v4
name: checkout
- uses: actions/setup-java@v4
name: set up jdk ${{matrix.java.version}}
with:
distribution: temurin
java-version: ${{matrix.java.version}}
cache: maven
- name: validate format
run: mvn -f pom.xml -B ${{matrix.java.opts}} formatter:validate
- name: build with maven
run: mvn -f pom.xml -B verify ${{matrix.java.opts}}