add manpage of metadb_backend_sync_commit_at_initialization #123
This file contains 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: | |
push: | |
pull_request: | |
jobs: | |
checkpatch: | |
name: Run checkpatch test | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: invoke checkpatch | |
id: checkpatch | |
run: | | |
set -x | |
git diff ${{ github.event.before }} ${{ github.sha }} | \ | |
./util/checkpatch/checkpatch.pl - |