Merge pull request #28 from Eukon05/dependabot/maven/org.hibernate.or… #67
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: Java CI with Maven | |
on: | |
push: | |
branches: [ "prototype" ] | |
paths-ignore: | |
- README.md | |
- .github/** | |
- .gitignore | |
pull_request: | |
branches: [ "prototype" ] | |
paths-ignore: | |
- README.md | |
- .github/** | |
- .gitignore | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up JDK 21 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: '21' | |
distribution: 'temurin' | |
cache: maven | |
- name: Install Maven 3.9.6 | |
run: | | |
wget https://downloads.apache.org/maven/maven-3/3.9.6/binaries/apache-maven-3.9.6-bin.tar.gz | |
tar -xvf apache-maven-3.9.6-bin.tar.gz | |
sudo mv apache-maven-3.9.6 /usr/local/apache-maven | |
rm apache-maven-3.9.6-bin.tar.gz | |
sudo update-alternatives --install /usr/bin/mvn mvn /usr/local/apache-maven/bin/mvn 1 | |
- name: Test with Maven | |
run: mvn -B test --file pom.xml |