Files
starter-workflows/ci/maven.yml
T

21 lines
315 B
YAML
Raw Normal View History

2019-07-29 09:38:23 -07:00
on: [push]
name: Maven
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
2019-07-31 16:52:59 -07:00
2019-07-29 09:38:23 -07:00
- uses: actions/checkout@master
2019-07-31 16:52:59 -07:00
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:
version: 1.8
2019-07-29 09:38:23 -07:00
- name: Build with Maven
run: mvn package --file pom.xml