Skip to content

Commit

Permalink
ci: add clang analyze workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
sreimers committed Jun 17, 2021
1 parent 12f4c82 commit 7b2b6bb
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/clang-analyze.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: clang analyze

on: [push, pull_request]

jobs:
c99:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2

- name: make
run: |
make info EXTRA_CFLAGS="-Werror" CCACHE=
make clang EXTRA_CFLAGS="-Werror" CCACHE=

0 comments on commit 7b2b6bb

Please sign in to comment.