Update maven.yml #12
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: [ "for_action" ] | |
pull_request: | |
branches: [ "master" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
ref: for_action # 指定要检出的分支 | |
- name: Set up JBR17 | |
run: | | |
curl -L -o jbr.tar.gz https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-17.0.9-linux-x64-b1087.7.tar.gz | |
tar -xzf jbr.tar.gz | |
echo `ls -l` | |
export JAVA_HOME=$PWD/jbrsdk-17.0.9-linux-x64-b1087.7 | |
export PATH=$JAVA_HOME/bin:$PATH | |
java -version | |
mvn clean test -X | |
shell: bash | |
# 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 |