JavaScript Communicator constructor cleanup #2723
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
| name: Java | |
| on: | |
| push: | |
| branches: ["main"] | |
| pull_request: | |
| # The branches below must be a subset of the branches above | |
| branches: ["main"] | |
| jobs: | |
| checkstyle: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Setup C++ | |
| uses: ./.github/actions/setup-cpp | |
| - name: Setup Java | |
| uses: ./.github/actions/setup-java | |
| - name: Build slice2java | |
| run: make -C cpp slice2java | |
| - name: Run checkstyle formatter | |
| working-directory: java | |
| run: ./gradlew check | |
| rewrite: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Setup C++ | |
| uses: ./.github/actions/setup-cpp | |
| - name: Setup Java | |
| uses: ./.github/actions/setup-java | |
| - name: Build slice2java | |
| run: make -C cpp slice2java | |
| - name: Run rewrite linter | |
| working-directory: java | |
| run: ./gradlew rewriteDryRun --no-parallel |