完善CatchingResult,支持recover处理掉特定异常,以支持catch风格的多级错误处理 #551
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
| name: Build | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| branches: [ main ] | |
| permissions: | |
| contents: read | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 | |
| - name: Setup Gradle | |
| uses: gradle/actions/setup-gradle@v6 | |
| - name: Build | |
| run: ./gradlew build | |
| env: | |
| DOCKER_TEST: "true" | |
| - name: Upload distZip (dev snapshot) | |
| uses: actions/upload-artifact@v7 | |
| with: | |
| name: autotweaker-dev-dist | |
| path: | | |
| core/build/distributions/*.zip | |
| core/build/distributions/*.tar | |
| retention-days: 7 |