dependency: (deps): bump org.springframework.boot from 3.3.0 to 3.3.1 in /backend #313
Workflow file for this run
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 |