Skip to content

chore(deps): bump kotlin.version from 1.9.21 to 1.9.23 in /webflux #88

chore(deps): bump kotlin.version from 1.9.21 to 1.9.23 in /webflux

chore(deps): bump kotlin.version from 1.9.21 to 1.9.23 in /webflux #88

Workflow file for this run

# This workflow will build a Java project with Maven
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
name: webflux
on:
push:
paths:
- "webflux/**"
branches: [ master ]
pull_request:
paths:
- "webflux/**"
types:
- opened
- synchronize
- reopened
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'zulu'
- name: Setup MongoDB in Docker
run: |
docker-compose up -d mongodb
docker ps -a
- name: Build with Maven
run: |
mvn -B -q clean verify -f webflux/pom.xml