forked from AOT-Technologies/forms-flow-ai
-
Notifications
You must be signed in to change notification settings - Fork 0
57 lines (54 loc) · 1.12 KB
/
forms-flow-bpm-ci.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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
name: Forms Flow BPM CI
on:
workflow_dispatch:
push:
branches:
- develop
- master
- release/**
pull_request:
branches:
- develop
- master
- release/**
paths:
- "forms-flow-bpm/**"
defaults:
run:
shell: bash
working-directory: ./forms-flow-bpm
jobs:
setup-job:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- run: "true"
Test:
if: always()
needs: setup-job
runs-on: ubuntu-20.04
name: Test
steps:
- uses: actions/checkout@v2
- name: Set up JDK
uses: actions/setup-java@v1
with:
java-version: '17'
- name: Cache Maven packages
uses: actions/cache@v1
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-m2
- name: Run Tests
run: mvn -B test --file pom.xml
Build:
if: always()
needs: setup-job
runs-on: ubuntu-20.04
name: Build
steps:
- uses: actions/checkout@v2
- name: Build
run: |
docker build . -t forms-flow-bpm