Skip to content

Commit

Permalink
Implement GitHub Actions build
Browse files Browse the repository at this point in the history
  • Loading branch information
VanRoy committed Dec 28, 2019
1 parent 1d40a2c commit 1b7f19d
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 3 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: CI

on:
push:
branches:
- master
pull_request:
branches:
- master

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v1
- uses: actions/cache@v1
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: Set up JDK 1.8
uses: actions/setup-java@v1
with:
java-version: 1.8
- name: Build with Maven
run: mvn -B package --file pom.xml
3 changes: 0 additions & 3 deletions .travis.yml

This file was deleted.

0 comments on commit 1b7f19d

Please sign in to comment.