Skip to content

doc: improve title format in statement of contributions (#147) #146 #330

doc: improve title format in statement of contributions (#147) #146

doc: improve title format in statement of contributions (#147) #146 #330

Workflow file for this run

name: CI
on:
push:
pull_request:
branches: [ main ]
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Java 25
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: "25"
cache: gradle
- name: Grant execute permission for Gradle wrapper
run: chmod +x ./gradlew
- name: Build and test
run: ./gradlew clean build
- name: Upload test reports
if: always()
uses: actions/upload-artifact@v4
with:
name: test-reports
path: |
**/build/test-results/test
**/build/reports/tests/test
- name: Check (tests + style)
run: ./gradlew clean check
- name: Upload reports
if: always()
uses: actions/upload-artifact@v4
with:
name: reports
path: |
**/build/reports/tests/test
**/build/reports/checkstyle