Make TAP devices usable in normal traffic scenarios #1284
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 | |
| on: | |
| pull_request: | |
| paths-ignore: | |
| - 'docs/**' | |
| - '**/*.md' | |
| - 'test/**' | |
| - 'hack/**' | |
| - 'config/**' | |
| - 'code_check/**' | |
| workflow_dispatch: | |
| jobs: | |
| checkpatch: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| ref: ${{ github.event.pull_request.head.ref }} | |
| fetch-depth: 0 | |
| - name: Run checkpatch download | |
| continue-on-error: true | |
| run: | | |
| ./code_check/check.sh -d >/dev/null 2>&1 | |
| - name: Run checkpatch | |
| run: ./code_check/check.sh -t check |