Корректировка запуска docker-compose и spring boot application. #26
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: CI | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- master | |
pull_request: | |
types: [ opened, synchronize, reopened ] | |
jobs: | |
ktlint: | |
name: ✒️ Стиль кода | |
runs-on: ubuntu-latest | |
steps: | |
- name: 📦 Checkout | |
uses: actions/checkout@v4 | |
- name: ☕️ Установка JDK 21 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: 21 | |
distribution: "temurin" | |
cache: 'gradle' | |
- name: 🔓 Установка разрешений на gradlew | |
run: chmod +x ./gradlew | |
- name: ✒️ Проверка кода с Gradle | |
run: ./gradlew ktlintCheck --no-daemon | |
assemble: | |
name: 🧩 Сборка проекта | |
needs: [ ktlint ] | |
runs-on: ubuntu-latest | |
steps: | |
- name: 📦 Checkout | |
uses: actions/checkout@v4 | |
- name: ☕️ Установка JDK 21 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: 21 | |
distribution: "temurin" | |
cache: 'gradle' | |
- name: 🔓 Установка разрешений на gradlew | |
run: chmod +x ./gradlew | |
- name: 🧩 Сборка с Gradle | |
run: ./gradlew assemble --no-daemon | |
sonar: | |
name: 📈 SonarCloud | |
needs: [ assemble ] | |
runs-on: ubuntu-latest | |
steps: | |
- name: 📦 Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis | |
- name: ☕️ Установка JDK 21 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: 21 | |
distribution: "temurin" | |
cache: 'gradle' | |
- name: 🔓 Установка разрешений на gradlew | |
run: chmod +x ./gradlew | |
- name: 📒 Кэширование SonarCloud | |
uses: actions/cache@v4 | |
with: | |
path: ~/.sonar/cache | |
key: ${{ runner.os }}-sonar | |
restore-keys: ${{ runner.os }}-sonar | |
- name: 📈 Сборка и анализ с SonarCloud | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} | |
run: ./gradlew build sonarqube --info |