Skip block comment containing a comma between call arguments #93
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: ci | |
| on: | |
| - push | |
| - pull_request | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 15 | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-java@v5 | |
| with: | |
| distribution: temurin | |
| java-version: 25 | |
| - name: Maven Install | |
| run: mvn install -B -V -DskipTests -Dair.check.skip-all | |
| - name: Airstyle Check | |
| run: mvn airstyle:check -B | |
| - name: Maven Tests | |
| run: mvn install -B -P ci |