Skip to content

Commit

Permalink
added github action
Browse files Browse the repository at this point in the history
  • Loading branch information
massdosage committed Apr 28, 2021
1 parent b825c2a commit 14f3b6a
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Build

on:
pull_request:
push:
branches:
- main

jobs:
test:
name: Package and run all tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Set up JDK
uses: actions/setup-java@v1
with:
java-version: 8
- name: Run Maven Targets
run: mvn package --batch-mode --show-version --no-transfer-progress

0 comments on commit 14f3b6a

Please sign in to comment.