-
Notifications
You must be signed in to change notification settings - Fork 17
41 lines (36 loc) · 875 Bytes
/
events.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
name: events
on:
push:
paths:
- "events/**"
branches:
- master
pull_request:
paths:
- "events/**"
types:
- opened
- synchronize
- reopened
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Java
uses: actions/setup-java@v4
with:
distribution: "corretto"
java-version: 21
cache: "maven"
- name: Build with Maven
run: mvn -B -q clean package --file events/pom.xml
- name: Unit Tests
run: mvn -B -q clean test --file events/pom.xml -Put
- name: Start up PostgreSQL in Docker
run: |
docker compose up -d postgres
sleep 5
docker ps -a
- name: Integration Tests
run: mvn -B -q clean verify --file events/pom.xml -Pit-jetty