Skip to content

feat: add five example modules, fix the async example, and fix a runtime-only -parameters bug #6

feat: add five example modules, fix the async example, and fix a runtime-only -parameters bug

feat: add five example modules, fix the async example, and fix a runtime-only -parameters bug #6

Workflow file for this run

name: Build
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
name: Build (JDK ${{ matrix.java }})
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
# 21 是项目的编译目标, 25 用于提前发现新 JDK 上的问题
java: [ '21', '25' ]
steps:
- name: Checkout repository
uses: actions/checkout@v7
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v6
with:
distribution: temurin
java-version: ${{ matrix.java }}
cache: maven
- name: Build
run: mvn -B --no-transfer-progress clean install