Close AOD when no notifications are there #28
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: Continuous Integration | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
concurrency: | |
group: ci-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
ktlint: | |
runs-on: ubuntu-latest | |
timeout-minutes: 5 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install | |
run: | | |
curl -sSLO https://github.com/pinterest/ktlint/releases/download/1.0.1/ktlint | |
chmod a+x ktlint | |
sudo mv ktlint /usr/local/bin/ | |
- name: Run | |
run: ktlint --reporter sarif -l none > ktlint.sarif | |
- name: Upload SARIF | |
uses: github/codeql-action/upload-sarif@v3 | |
if: success() || failure() | |
with: | |
sarif_file: ktlint.sarif | |
detekt: | |
runs-on: ubuntu-latest | |
timeout-minutes: 5 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Java | |
uses: actions/setup-java@v4 | |
with: | |
distribution: temurin | |
java-version: 17 | |
- name: Setup Gradle | |
uses: gradle/actions/setup-gradle@v3 | |
- name: Run | |
run: | | |
chmod +x gradlew | |
./gradlew detekt | |
- name: Upload SARIF | |
uses: github/codeql-action/upload-sarif@v3 | |
if: success() || failure() | |
with: | |
sarif_file: app/build/reports/detekt/detekt.sarif | |
- name: Job Summary | |
if: success() || failure() | |
run: cat ./app/build/reports/detekt/detekt.md >> $GITHUB_STEP_SUMMARY | |
build: | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Java | |
uses: actions/setup-java@v4 | |
with: | |
distribution: temurin | |
java-version: 17 | |
- name: Setup Gradle | |
uses: gradle/actions/setup-gradle@v3 | |
- name: Run | |
run: | | |
chmod +x gradlew | |
./gradlew build |