Files
sinqDAQ/.gitea/workflows/action.yaml
Edward Wall c44056176f
Some checks failed
Example Action / Lint (push) Failing after 1s
Example Action / Build (push) Successful in 1s
Run linting commands
2025-07-04 11:34:19 +02:00

17 lines
373 B
YAML

name: Example Action
on: [push]
jobs:
Lint:
runs-on: linepics
steps:
- name: cppcheck
run: ls -lash && cppcheck --std=c++17 --addon=cert --addon=misc --error-exitcode=1 src/*.cpp
- name: formatting
run: clang-format --style=file --Werror --dry-run src/*.cpp
Build:
runs-on: linepics
steps:
- run: |
ls -lsah