mirror of
https://github.com/quantum5/winscap.git
synced 2025-04-24 05:31:58 -04:00
Add lint workflow for GitHub actions
This commit is contained in:
parent
e64db21dc9
commit
af5047a0b7
12
.github/workflows/lint.yml
vendored
Normal file
12
.github/workflows/lint.yml
vendored
Normal file
|
@ -0,0 +1,12 @@
|
|||
name: lint
|
||||
on: [push, pull_request]
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v1
|
||||
- uses: DoozyX/clang-format-lint-action@v0.5
|
||||
with:
|
||||
source: '.'
|
||||
extensions: 'h,c,cpp'
|
||||
clangFormatVersion: 9
|
Loading…
Reference in a new issue