Skip to content

update 'README.md' from »Spring Boot« #5

update 'README.md' from »Spring Boot«

update 'README.md' from »Spring Boot« #5

Workflow file for this run

---
name: Spring Boot
permissions: { }
on:
push:
paths:
- 'spring-boot/**'
- '!spring-boot/README.md'
- '.github/workflows/spring-boot.yml'
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build-java:
runs-on: ubuntu-22.04
strategy:
matrix:
javaVersion: [ "17", "21" ]
javaDistribution: [ "temurin", "zulu" ]
pgDockerTag: [ "17.2", "16.6", "15.10", "14.15", "13.18" ]
name: Java ${{ matrix.javaVersion }}-${{ matrix.javaDistribution }} w/ PostgreSQL ${{ matrix.pgDockerTag }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: ${{ matrix.javaDistribution }}
java-version: ${{ matrix.javaVersion }}
cache: 'maven'
- run: mvn test --no-transfer-progress --file spring-boot/pom.xml -DargLine="-Dspring.datasource.url=jdbc:tc:postgresql:${{ matrix.pgDockerTag }}:///"
diKTat:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: 11
cache: 'maven'
- run: mvn diktat:check --no-transfer-progress --file spring-boot/pom.xml