We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e5dbe35 commit 3d5f2d1Copy full SHA for 3d5f2d1
.github/workflows/ci.yml
@@ -11,17 +11,11 @@ jobs:
11
- uses: actions/checkout@v2
12
- name: Install dependencies
13
run: sudo apt-get install -y --no-install-recommends libcmocka-dev
14
+ - name: Compile as C++
15
+ run: g++ -fsyntax-only -xc++ cmp.c
16
- name: Build library
17
run: make -j4
18
- name: Build test programs
19
run: make testprogs
- - name: Run unit tests
- run: make unittest
20
- - name: Run ASAN tests
21
- run: make addrtest
22
- - name: Run MSAN tests
23
- run: make memtest
24
- - name: Run UBSAN tests
25
- run: make ubtest
26
- - name: Run tests without FPU (no float)
27
- run: make nofloattest
+ - name: Run tests
+ run: make test
0 commit comments