-
-
Notifications
You must be signed in to change notification settings - Fork 15
36 lines (32 loc) · 890 Bytes
/
ci.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
name: OpenPAGO-HW
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
# clang-format:
# name: Lint clang-format
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v3
# - name: Run clang-format lint
# run: find include/ src/ \( -name '*.[ch]pp' -o -name '*.h' \) | xargs clang-format --verbose --style=file -n --Werror
# editorconfig-checker:
# name: Lint EditorConfig
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v3
# - run: pipx install "editorconfig-checker"
# - name: Run editorconfig-checker
# run: ec
check-compiler-warnings:
name: Check compiler warnings
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Compile
working-directory: examples/neutral_example_implentation
run: make check