Setup github actions
This commit is contained in:
parent
ab6345234f
commit
8ba339b8a0
3 changed files with 16 additions and 5 deletions
14
.github/workflows/build.yml
vendored
Normal file
14
.github/workflows/build.yml
vendored
Normal 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
|
Loading…
Add table
Add a link
Reference in a new issue