-
Notifications
You must be signed in to change notification settings - Fork 0
37 lines (35 loc) · 933 Bytes
/
main.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
name: A workflow for my Hello World App
on: push
jobs:
UnitTests:
name: Unit Tests
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v2
with:
submodules: recursive
- name: Set up JDK 17
uses: actions/setup-java@v2
with:
java-version: '17'
distribution: 'adopt'
- name: Unit Tests
run: mvn -Dtest=com.napier.devops.AppTest test
build:
name: Build and Start Using docker-compose
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v2
with:
submodules: recursive
- name: Set up JDK 11
uses: actions/setup-java@v2
with:
java-version: '11'
distribution: 'adopt'
- name: Package and Run docker compose
run: |
mvn package -DskipTests
docker compose up --abort-on-container-exit