Setup github actions

This commit is contained in:
Piotr Fus 2023-05-28 18:53:32 +02:00
parent ab6345234f
commit 8ba339b8a0
3 changed files with 16 additions and 5 deletions

14
.github/workflows/build.yml vendored Normal file
View file

@ -0,0 +1,14 @@
name: Build mockserver
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up JDK 8
uses: actions/setup-java@v3
with:
java-version: '8'
distribution: 'temurin'
- name: Build with Maven
run: ./mvnw package