diff options
author | Shigeru Chiba <chibash@users.noreply.github.com> | 2021-05-06 12:52:43 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-06 12:52:43 +0900 |
commit | 17a85ae34b824439dd51b8d7337381d7fed6e3ca (patch) | |
tree | 12710d27419c33f5f97b0fc188b736cd0c11d444 /.github/workflows/maven.yml | |
parent | b0063871e8ed7c159a4741d4e9eef5027df99cc9 (diff) | |
download | javassist-17a85ae34b824439dd51b8d7337381d7fed6e3ca.tar.gz javassist-17a85ae34b824439dd51b8d7337381d7fed6e3ca.zip |
Create maven.yml
Diffstat (limited to '.github/workflows/maven.yml')
-rw-r--r-- | .github/workflows/maven.yml | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml new file mode 100644 index 00000000..1531e216 --- /dev/null +++ b/.github/workflows/maven.yml @@ -0,0 +1,25 @@ +# 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 with Maven + +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + - name: Set up JDK 11 + uses: actions/setup-java@v2 + with: + java-version: '11' + distribution: 'adopt' + - name: Build with Maven + run: mvn -B package --file pom.xml |