Skip to content

v0.10: CI testing of patch queue #6

v0.10: CI testing of patch queue

v0.10: CI testing of patch queue #6

Workflow file for this run

name: Kernel Coding Style Check
on: [pull_request, push]
jobs:
check-style:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Download checkpatch.pl
run: wget https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/plain/scripts/checkpatch.pl
- name: Run checkpatch.pl
run: perl checkpatch.pl --strict --no-tree <(git format-patch --stdout master)