Files
sinqDAQ/.gitea/workflows/action.yaml
Edward Wall 47228b0b5b
Some checks failed
Example Action / Lint (push) Failing after 10s
Example Action / Build (push) Failing after 1s
retrieve code
2025-07-04 11:41:28 +02:00

21 lines
497 B
YAML

name: Example Action
on: [push]
jobs:
Lint:
runs-on: linepics
steps:
- name: checkout repo
uses: actions/checkout@v4
- 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:
- name: checkout repo
uses: actions/checkout@v4
- run: |
ls -lsah