Skip to content

chore(deps): bump cycjimmy/semantic-release-action from 3 to 4 #167

chore(deps): bump cycjimmy/semantic-release-action from 3 to 4

chore(deps): bump cycjimmy/semantic-release-action from 3 to 4 #167

# This workflow will build a Java project with Maven
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
name: Java CI on pullRequest with Maven
on:
pull_request:
branches:
- main
- develop
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java: [ '8', '17' ]
steps:
- uses: actions/checkout@v3
- name: Set up JDK ${{ matrix.Java }}
uses: actions/setup-java@v3
with:
java-version: ${{ matrix.Java }}
distribution: 'adopt'
cache: 'maven'
- name: Build with Maven
run: mvn -B verify