Skip to content

Add markdownlint-cli2 CI check, clean up README, support rule IDs in … #21

Add markdownlint-cli2 CI check, clean up README, support rule IDs in …

Add markdownlint-cli2 CI check, clean up README, support rule IDs in … #21

Workflow file for this run

name: Build
on:
push:
branches: [main]
pull_request:
permissions:
contents: read
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ github.event_name == 'pull_request' }}
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v7
- name: Set up JDK 21
uses: actions/setup-java@v5
with:
distribution: temurin
java-version: "21"
- name: Set up Gradle
uses: gradle/actions/setup-gradle@v6
- name: Build
run: ./gradlew build --stacktrace