Files
starter-workflows/ci/maven.yml
T

25 lines
566 B
YAML
Raw Normal View History

2020-02-20 12:44:22 -05:00
# 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
2019-08-06 16:37:30 -07:00
2020-02-12 13:26:01 -05:00
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
2019-07-29 09:38:23 -07:00
jobs:
build:
2019-08-06 16:37:30 -07:00
2019-07-29 09:38:23 -07:00
runs-on: ubuntu-latest
2019-08-06 16:37:30 -07:00
2019-07-29 09:38:23 -07:00
steps:
2019-12-24 14:22:22 -08:00
- uses: actions/checkout@v2
2019-07-29 09:38:23 -07:00
- name: Set up JDK 1.8
2019-08-02 10:30:20 -04:00
uses: actions/setup-java@v1
2019-07-31 16:52:59 -07:00
with:
2019-08-14 14:05:28 -04:00
java-version: 1.8
2019-07-29 09:38:23 -07:00
- name: Build with Maven
2019-09-20 12:41:36 -07:00
run: mvn -B package --file pom.xml