[TECH]: Bump com.google.guava:guava from 32.1.2-jre to 32.1.3-jre #158
Workflow file for this run
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: | |
- service-discovery-app/** | |
- service-discovery-ft/** | |
pull_request: | |
branches: [ main ] | |
paths: | |
- service-discovery-app/** | |
- service-discovery-ft/** | |
workflow_dispatch: | |
inputs: | |
logLevel: | |
description: 'Log level' | |
required: true | |
default: 'debug' | |
type: choice | |
options: | |
- info | |
- warning | |
- debug | |
jobs: | |
build: | |
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 Service Discovery module | |
run: ./gradlew --no-daemon :service-discovery-app:build -x test | |
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: Run unit tests | |
run: ./gradlew --no-daemon :service-discovery-app:test | |
- name: Run functional tests | |
run: ./gradlew --no-daemon :service-discovery-ft:cucumber |