dependency: (deps): bump io.spring.dependency-management from 1.1.5 to 1.1.6 in /backend #314
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: Java CI with Gradle | |
on: | |
push: | |
branches: [main, live-documentation-readme] | |
pull_request: | |
branches: [main, live-documentation-readme] | |
permissions: | |
contents: read | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Java 21 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: "21" | |
distribution: "temurin" # AdoptOpenJDK Hotspot | |
- name: Cache Gradle packages | |
uses: actions/cache@v2 | |
with: | |
path: | | |
~/backend/.gradle/caches | |
~/backend/.gradle/wrapper | |
key: ${{ runner.os }}-gradle-${{ hashFiles('backend/**/*.gradle*', 'backend/**/gradle-wrapper.properties') }} | |
restore-keys: | | |
${{ runner.os }}-gradle- | |
- name: Grant execute permission for gradlew | |
run: chmod +x backend/gradlew | |
- name: Build with Gradle | |
run: cd backend && ./gradlew build | |
- name: Test with Gradle | |
run: cd backend && ./gradlew test --info |