尝试修复由于编译器插件导致的IDE泛型解析问题,进而导致的 OneBotApiExecutable 合成函数在IDEA中不可见的问题 #110
Workflow file for this run
This file contains 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
name: Test Branch | |
on: | |
pull_request: | |
branches: | |
- 'dev/**' | |
paths: | |
- '**.java' | |
- '**.kt' | |
- '**.kts' | |
- '*/src/*/kotlin/**' | |
- '*/src/*/java/**' | |
- '*/src/*/resource/**' | |
- 'gradle/**' | |
concurrency: | |
group: test-branch-${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
env: | |
IS_CI: true | |
GRADLE_OPTS: "-Dfile.encoding=UTF-8" | |
jobs: | |
build-test: | |
name: Build and test | |
strategy: | |
matrix: | |
os: [ macos-latest, windows-latest, ubuntu-latest ] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-java@v4 | |
with: | |
distribution: 'zulu' | |
java-version: 21 | |
cache: 'gradle' | |
- uses: gradle/actions/setup-gradle@v3 | |
- name: Run all tests | |
run: gradle assemble build allTests --info --warning-mode all | |
- name: Upload test reports | |
uses: actions/upload-artifact@v4 | |
if: ${{ always() }} | |
with: | |
name: test-reports-${{ matrix.os }} | |
path: '**/build/reports/tests' | |
retention-days: 7 |