Skip to content
Snippets Groups Projects
Unverified Commit 74dcd6a9 authored by Shinsuke Sugaya's avatar Shinsuke Sugaya Committed by GitHub
Browse files

Create maven.yml

parent 82d771b1
No related branches found
No related tags found
No related merge requests found
# 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
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment