mirror of
https://github.com/daeuniverse/dae.git
synced 2025-01-07 05:51:20 +07:00
24 lines
358 B
YAML
24 lines
358 B
YAML
name: Lint
|
|
|
|
on:
|
|
pull_request:
|
|
paths:
|
|
- "**/*.c"
|
|
- "**/*.h"
|
|
- ".github/workflows/lint.yml"
|
|
|
|
jobs:
|
|
|
|
test:
|
|
runs-on: ubuntu-22.04
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Set up Perl
|
|
uses: shogo82148/actions-setup-perl@v1
|
|
with:
|
|
perl-version: "5.38"
|
|
|
|
- name: Run lint
|
|
run: make ebpf-lint
|