Files
sinqS7plcFW/.gitea/workflows/action.yaml
Edward Wall 398e36211b
Some checks failed
Test And Build / Lint (push) Failing after 9s
Test And Build / Build (push) Successful in 4s
check c files
2025-07-04 14:47:00 +02:00

20 lines
457 B
YAML

name: Test And Build
on: [push]
jobs:
Lint:
runs-on: linepics
steps:
- name: checkout repo
uses: actions/checkout@v4
- name: cppcheck
run: cppcheck --std=c++17 --addon=cert --addon=misc --error-exitcode=1 ./*.c
Build:
runs-on: linepics
steps:
- name: checkout repo
uses: actions/checkout@v4
- run: |
sed -i 's/ARCH_FILTER=.*/ARCH_FILTER=linux%/' Makefile
make install