Skip to content

Enhance integration tests #68

Enhance integration tests

Enhance integration tests #68

Workflow file for this run

# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
# This workflow will build a Java project with Gradle and cache/restore any dependencies to improve the workflow execution time
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-java-with-gradle
name: Java CI with Gradle
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
services:
postgres:
image: postgres
ports:
- 5432:5432
env:
POSTGRES_DB: personia_test
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
steps:
- uses: actions/checkout@v3
- name: Set up JDK 11
uses: actions/setup-java@v3
with:
java-version: '11'
distribution: 'temurin'
- name: Build with Gradle
uses: gradle/gradle-build-action@67421db6bd0bf253fb4bd25b31ebb98943c375e1
with:
arguments: build --no-daemon
env:
POSTGRES_DB: personia_test
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
JDBC_URL: jdbc:postgresql://localhost:5432
DATABASE: personia_test
DB_USERNAME: postgres
DB_PASSWORD: postgres
JWT_SECRET: secret
JWT_ISSUER: http://0.0.0.0:8080/
JWT_AUDIENCE: http://0.0.0.0:8080/hierarchy
JWT_REALM: Access to 'hierarchy'
JWT_EXPIRATION: 31536000