Skip to content

chore(deps): bump org.jetbrains.kotlin:kotlin-maven-allopen from 1.9.10 to 1.9.20 in /kofu-reactive-mongo #93

chore(deps): bump org.jetbrains.kotlin:kotlin-maven-allopen from 1.9.10 to 1.9.20 in /kofu-reactive-mongo

chore(deps): bump org.jetbrains.kotlin:kotlin-maven-allopen from 1.9.10 to 1.9.20 in /kofu-reactive-mongo #93

# 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: kofu-reactive-mongo
on:
push:
paths:
- "kofu-reactive-mongo/**"
branches: [ master ]
pull_request:
paths:
- "kofu-reactive-mongo/**"
types:
- opened
- synchronize
- reopened
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v3
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 kofu-reactive-mongo/pom.xml