low-latency CPU standby mode #66
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: checkpatch review | |
| # Controls when the workflow will run | |
| on: [pull_request] | |
| # A workflow run is made up of one or more jobs that can run sequentially or in parallel | |
| jobs: | |
| my_review: | |
| name: checkpatch review | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: 'Calculate PR commits + 1' | |
| run: echo "PR_FETCH_DEPTH=$(( ${{ github.event.pull_request.commits }} + 1 ))" >> $GITHUB_ENV | |
| - uses: actions/checkout@v4 | |
| with: | |
| ref: ${{ github.event.pull_request.head.sha }} | |
| fetch-depth: ${{ env.PR_FETCH_DEPTH }} | |
| - name: Run checkpatch review | |
| run: | | |
| curl -L -o checkpatch.pl https://raw.githubusercontent.com/torvalds/linux/master/scripts/checkpatch.pl | |
| chmod +x checkpatch.pl | |
| git format-patch -${{ github.event.pull_request.commits }} --stdout | ./checkpatch.pl --no-tree --ignore SPELLING --ignore CONST_STRUCT - | |