Replace JUnit passed/failed/skipped status with per-method timing #397
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: Comment Style Check | |
| on: | |
| pull_request: | |
| branches: [ '*' ] | |
| paths: | |
| - '**/*.java' | |
| - '**/*.c' | |
| - '**/*.h' | |
| jobs: | |
| check-comment-style: | |
| runs-on: ubuntu-latest | |
| name: Check Multi-line Comment Style | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Check for single-line comments in changed files | |
| run: ./scripts/comment-style-check.sh "${{ github.base_ref }}" |