This repository has been archived by the owner on Dec 4, 2024. It is now read-only.
Merge pull request #47 from 7SOATSquad30/feat/verify-cognito-role #138
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: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Setup JDK | |
uses: actions/setup-java@v3 | |
with: | |
java-version: 21 | |
distribution: 'zulu' | |
- name: Cache Gradle packages | |
uses: actions/cache@v3 | |
with: | |
path: | | |
~/.gradle/caches | |
~/.gradle/wrapper | |
key: ${{ runner.os }}-gradle-${{ hashFiles('**/build.gradle', '**/gradle-wrapper.properties') }} | |
restore-keys: | | |
${{ runner.os }}-gradle- | |
- name: Code linting | |
run: ./gradlew spotlessCheck | |
- name: Static analysis | |
run: | | |
./gradlew pmdMain | |
./gradlew pmdTest | |
- name: Run tests | |
run: ./gradlew test | |
- name: Build | |
run: ./gradlew clean assemble |