-
-
Notifications
You must be signed in to change notification settings - Fork 23
35 lines (33 loc) · 1014 Bytes
/
run-tests.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
name: run-tests
on: [push,pull_request]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: juarezr/[email protected]
with:
version: 'v4.0'
isc_password: 'masterkey'
enable_legacy_client_auth: 'true'
- uses: actions/checkout@v4
- name: Set up Java 17
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin'
- name: Setup Gradle
uses: gradle/actions/setup-gradle@d156388eb19639ec20ade50009f3d199ce1e2808
with:
cache-read-only: ${{ github.ref != 'refs/heads/master' }}
- name: Build with Gradle
run: ./gradlew test -Ptest.dbondocker=true -Ptest.db.dir=/firebird/data
- name: Store Report Artifact
uses: actions/upload-artifact@v4
if: always()
with:
name: report-artifacts
path: build/reports
compression-level: 9
retention-days: 7