mirror of
https://github.com/avrdudes/avrdude.git
synced 2026-06-02 09:46:34 +03:00
Add checks for zombie sourcecode problems
This adds checks for zombie sourcecode problems, i.e. problems
we have tried to eliminate but which might be or have been
resurrected.
The example check is for the problematic
#include "ac_cfg.h"
with double quotes instead of <> which were identified as a
problem in https://github.com/avrdudes/avrdude/issues/1706
and then fixed.
This commit is contained in:
24
.github/workflows/check-sourcecode.yml
vendored
Normal file
24
.github/workflows/check-sourcecode.yml
vendored
Normal file
@@ -0,0 +1,24 @@
|
||||
name: "Check Sourcecode"
|
||||
|
||||
on:
|
||||
push:
|
||||
branches-ignore:
|
||||
- 'onlinedocs'
|
||||
pull_request:
|
||||
branches-ignore:
|
||||
- 'onlinedocs'
|
||||
|
||||
jobs:
|
||||
|
||||
check-sourcecode:
|
||||
name: "Check Sourcecode"
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
|
||||
- uses: actions/checkout@v4
|
||||
|
||||
# - name: Install prerequisites
|
||||
|
||||
- name: "Check the sourcecode"
|
||||
run: ./tools/check-sourcecode
|
||||
Reference in New Issue
Block a user