Replace JUnit passed/failed/skipped status with per-method timing #443
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: Line Length Check | |
| on: | |
| pull_request: | |
| branches: [ '*' ] | |
| jobs: | |
| line-length-check: | |
| runs-on: ubuntu-latest | |
| name: Check 80 character line limit | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Check line length in PR changes | |
| run: | | |
| BASE_REF="${{ github.event.pull_request.base.ref }}" | |
| ./scripts/line-length-check-added-lines.sh "origin/$BASE_REF" |