Files
sinqDAQ/.gitea/workflows/action.yaml
Edward Wall 2a75f9ec3c
Some checks failed
Example Action / Lint (push) Failing after 1s
Example Action / Build (push) Failing after 1s
retrieve code
2025-07-04 12:08:50 +02:00

23 lines
554 B
YAML

name: Example Action
on: [push]
jobs:
Lint:
runs-on: linepics
steps:
- name: test
run: whoami && echo "${PATH}"
- 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