-
Notifications
You must be signed in to change notification settings - Fork 0
63 lines (60 loc) · 1.77 KB
/
run-tests.yaml
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
58
59
60
61
62
63
name: Run tests
on:
push:
branches: [ main, staging ]
pull_request:
env:
USERNAME: ${{ secrets.GPR_USER }}
TOKEN: ${{ secrets.GPR_KEY }}
jobs:
test:
name: Run unit tests
runs-on: ubuntu-latest
permissions:
actions: read
services:
postgres:
image: postgres
env:
POSTGRES_USER: mdbenefits_test
POSTGRES_PASSWORD: postgres
POSTGRES_DB: mdbenefits_test
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5
ports:
- 5432:5432
steps:
- uses: actions/checkout@v4
- name: Set up ChromeDriver
uses: nanasess/[email protected]
with:
chromedriver-version: '115.0.5790.102'
- name: Set up JDK
uses: actions/[email protected]
with:
distribution: 'adopt'
java-version: '17'
cache: 'gradle'
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Test with Gradle
run: ./gradlew clean test --stacktrace
- name: Cache Gradle packages
uses: actions/cache@v4
with:
path: |
~/.gradle/caches
~/.gradle/wrapper
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }}
restore-keys: |
${{ runner.os }}-gradle-
- name: Save screenshot from flaky tests
if: failure()
uses: actions/upload-artifact@v4
with:
name: flaky test screenshot
path: flakeyTestScreenshot.jpg
retention-days: 14
- name: Cleanup Gradle Cache
run: |
rm -f ~/.gradle/caches/modules-2/modules-2.lock
rm -f ~/.gradle/caches/modules-2/gc.properties