-
Notifications
You must be signed in to change notification settings - Fork 17
47 lines (41 loc) · 1.02 KB
/
jpa.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
name: jpa
on:
push:
paths:
- "jpa/**"
branches:
- master
pull_request:
paths:
- "jpa/**"
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
- name: Cache Maven packages
uses: actions/cache@v4
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-m2
- name: Build with Maven
run: mvn -B -q clean package --file jpa/pom.xml
- name: Unit Tests
run: mvn -B -q clean test --file jpa/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 jpa/pom.xml -Pit-jetty