Bump org.wildfly:wildfly-ejb3 from 34.0.0.Final to 34.0.1.Final #661
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: Verify Build | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
build: | |
name: Build with Java ${{ matrix.java }} | |
runs-on: ubuntu-22.04 | |
strategy: | |
matrix: | |
java: [ '11', '17' ] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: ${{ matrix.java }} | |
cache: 'maven' | |
- run: | | |
./mvnw -B verify |