Skip to content

Add Docker and Docker Compose Support #2

Add Docker and Docker Compose Support

Add Docker and Docker Compose Support #2

Workflow file for this run

name: Java CI with Gradle
on: [push, pull_request]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up JDK 21
uses: actions/setup-java@v4
with:
java-version: '21'
distribution: 'temurin'
cache: gradle
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build with Gradle
run: ./gradlew build -x test
- name: Run tests
run: ./gradlew test
- name: Publish Test Results
uses: actions/upload-artifact@v4
if: always()
with:
name: test-results
path: |
build/reports/tests/test/
build/test-results/test/
- name: Update status check
if: success()
run: echo "Tests passed" > status.txt || echo "Tests failed" > status.txt
- name: Upload status check
uses: actions/upload-artifact@v4
with:
name: status-check
path: status.txt