chore(deps): update kotlin monorepo to v2 (major) #732
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: 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 |