Skip to content

chore(deps): update kotlin monorepo to v2 (major) #732

chore(deps): update kotlin monorepo to v2 (major)

chore(deps): update kotlin monorepo to v2 (major) #732

name: spring-boot-postgres
on:
push:
paths:
- 'spring-boot-postgres-java/**'
- 'spring-boot-postgres-kotlin/**'
- '.github/workflows/spring-boot-postgres.yml'
pull_request:
paths:
- 'spring-boot-postgres-java/**'
- 'spring-boot-postgres-kotlin/**'
- '.github/workflows/spring-boot-postgres.yml'
jobs:
postgres-java:
name: Build spring boot using postres with java version ${{ matrix.java }}
runs-on: ubuntu-latest
strategy:
matrix:
java: [ 17,18 ]
steps:
- uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4
- name: Setup java ${{ matrix.java }}
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: ${{ matrix.java }}
- run: mvn -B -f spring-boot-postgres-java clean verify
postgres-kotlin:
name: Build spring boot using postres with java version ${{ matrix.java }}
runs-on: ubuntu-latest
strategy:
matrix:
java: [ 17,18 ]
steps:
- uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4
- name: Setup java ${{ matrix.java }}
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: ${{ matrix.java }}
- run: mvn -B -f spring-boot-postgres-kotlin clean verify