build(deps): bump distroless/java21-debian12 from 70e8a49
to 41fe95b
in /apps/backend
#325
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: "verify: backend" | |
on: | |
pull_request: | |
branches: | |
- 'main' | |
paths: | |
- 'apps/backend/**' | |
- '.github/workflows/verify-backend.yaml' | |
- 'apps/backend/pom.xml' | |
workflow_dispatch: | |
jobs: | |
verify: | |
name: Verify backend compiles and run tests | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Cache Dependencies | |
uses: actions/cache@v4 | |
with: | |
path: ~/.m2/repository | |
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} | |
restore-keys: ${{ runner.os }}-maven- | |
- name: JDK | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: 21 | |
- name: Run tests | |
env: | |
GITHUB_USERNAME: x-access-token | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: mvn clean test --also-make --batch-mode |