This repository was archived by the owner on Dec 24, 2025. It is now read-only.
feat(exception): introduce BounceverseException for better error hand… #101
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 Bytecode | |
| on: | |
| push: | |
| pull_request: | |
| types: [ opened, ready_for_review, reopened ] | |
| permissions: | |
| contents: read | |
| jobs: | |
| build: | |
| if: "github.event_name != 'push' || !startsWith(github.event.head_commit.message, '[skip ci]')" | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v5 | |
| - name: Setup Gradle | |
| uses: gradle/actions/setup-gradle@v5 | |
| - name: Build | |
| run: | | |
| chmod +x gradlew | |
| ./gradlew clean build |