Skip to content

test: #30 :: cover block, report, media cleanup, and the openapi docu… #70

test: #30 :: cover block, report, media cleanup, and the openapi docu…

test: #30 :: cover block, report, media cleanup, and the openapi docu… #70

Workflow file for this run

name: CI
on:
push:
branches:
- main
- develop
- "ci/**"
- "feature/**"
pull_request:
branches:
- main
- develop
permissions:
contents: read
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
name: Gradle Test
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- name: Checkout
uses: actions/checkout@v7
- name: Set up JDK
uses: actions/setup-java@v5.4.0
with:
distribution: temurin
java-version: "21"
- name: Set up Gradle
uses: gradle/actions/setup-gradle@v6.2.0
- name: Make Gradle wrapper executable
run: chmod +x ./gradlew
- name: Run tests
run: ./gradlew test