- Github Actions Test 2 #24
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: Java CI with Maven | |
on: | |
push: | |
branches: [ "prototype", "actions-test" ] | |
pull_request: | |
branches: [ "prototype" ] | |
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: Check versions | |
run: | | |
java -version | |
javac -version | |
mvn -version | |
- name: Test with Maven | |
run: mvn -B test --file pom.xml | |
# Optional: Uploads the full dependency graph to GitHub to improve the quality of Dependabot alerts this repository can receive | |
- name: Update dependency graph | |
uses: advanced-security/maven-dependency-submission-action@571e99aab1055c2e71a1e2309b9691de18d6b7d6 |