Add mvn test push workflow

This commit is contained in:
kristoffer
2023-04-30 23:18:19 +02:00
parent 2fcc102ed4
commit cfaa584a7d
2 changed files with 72 additions and 54 deletions

18
.github/workflows/run-tests.yaml vendored Normal file
View File

@@ -0,0 +1,18 @@
name: Maven Tests
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK 11
uses: actions/setup-java@v1
with:
java-version: 11
- name: Build and test with Maven
run: mvn test