Skip to content

docs(changelog): record 0.8.6 security fixes and DLFS tombstone change #343

docs(changelog): record 0.8.6 security fixes and DLFS tombstone change

docs(changelog): record 0.8.6 security fixes and DLFS tombstone change #343

Workflow file for this run

# .github/workflows/build.yml
# Runs on pushes and pull requests (including from forks) — builds and tests the project
name: Build
on: [push, pull_request]
# Cancel superseded in-progress runs for the same ref (saves CI minutes on rapid re-pushes)
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
timeout-minutes: 30
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v6
- name: Set up JDK 21
uses: actions/setup-java@v5
with:
distribution: zulu
java-version: 21
cache: maven
- name: Build and test
run: mvn -B clean install