-
Notifications
You must be signed in to change notification settings - Fork 131
44 lines (35 loc) · 1020 Bytes
/
maven.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
# This workflow will build a Java project with Maven
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
name: Java CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
schedule:
- cron: 30 4 * * *
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java-version: [17,20]
steps:
- uses: actions/checkout@v4
- name: Set up Java ${{ matrix.java-version }}
uses: actions/setup-java@v4
with:
java-version: ${{ matrix.java-version }}
distribution: 'sapmachine'
- name: Build with Maven
run: mvn -B clean verify
- name: Run integration tests - Manage Travels
working-directory: ./app/travel_processor
run: |
npm ci
npm run test:java -- --ci
- name: Run integration tests - Analyze Bookings
working-directory: ./app/travel_analytics
run: |
npm ci
npm run test:java -- --ci