comment the default port to update later together with the docker-com… #214
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build and test | |
on: | |
push: | |
branches: [ main ] | |
paths: | |
- sd-app/** | |
- sd-ft/** | |
- gradle/libs.versions.toml | |
pull_request: | |
branches: [ main ] | |
paths: | |
- sd-app/** | |
- sd-ft/** | |
- gradle/libs.versions.toml | |
workflow_dispatch: | |
inputs: | |
logLevel: | |
description: 'Log level' | |
required: true | |
default: 'debug' | |
type: choice | |
options: | |
- info | |
- warning | |
- debug | |
jobs: | |
build-and-test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '17' | |
distribution: 'zulu' | |
- name: Build + unit tests | |
run: ./gradlew --no-daemon :sd-app:build | |
- name: Start Spring Boot app | |
run: java -jar sd-app/build/libs/service-discovery.jar & | |
- name: Wait for Spring Boot to start | |
run: | | |
echo "Waiting for Spring Boot to start..." | |
sleep 5 | |
- name: Run functional tests | |
run: ./gradlew --no-daemon :sd-ft:cucumber | |
- name: Stop Spring Boot app | |
run: | | |
echo "Stopping Spring Boot app..." | |
pkill -f 'java -jar sd-app/build/libs/service-discovery.jar' |