Bump io.swagger.core.v3:swagger-annotations from 2.2.22 to 2.2.25 #1560
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: Build & Test | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write # The Dependency Submission API requires write permission | |
packages: write | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-java@v4 | |
with: | |
java-version: '11' | |
distribution: 'temurin' | |
cache: 'gradle' | |
- run: ./gradlew jar testClasses | |
- run: cd sample && docker compose up -d db && cd - | |
- run: ./gradlew test --info | |
- run: cd sample && docker compose stop db && cd - | |
- run: cd sample && docker compose build && cd - | |
- run: .github/workflows/check-readme-links.sh | |
- uses: mikepenz/[email protected] | |
if: ${{ github.ref == 'refs/heads/master' }} | |
with: | |
gradle-build-module: |- | |
:server | |
:slf4j | |
:jackson | |
:liquibase | |
:sample |