Skip to content
This repository was archived by the owner on May 21, 2026. It is now read-only.

Fix minor formatting in LICENSE.txt #1

Fix minor formatting in LICENSE.txt

Fix minor formatting in LICENSE.txt #1

Workflow file for this run

name: CI
on:
pull_request:
branches: [ "master" ]
workflow_dispatch:
permissions:
contents: read
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
jobs:
tests:
name: Tests
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Set up Java 21 (Temurin)
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: '21'
- name: Setup Gradle (with caching)
uses: gradle/actions/setup-gradle@v3
- name: Make Gradle wrapper executable
run: chmod +x gradlew
- name: Run unit tests
run: ./gradlew --no-daemon clean test
- name: Upload test reports (always)
if: always()
uses: actions/upload-artifact@v4
with:
name: test-reports
path: |
build/test-results/test
build/reports/tests/test