docs(changelog): record 0.8.6 security fixes and DLFS tombstone change #343
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # .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 |