-
Notifications
You must be signed in to change notification settings - Fork 0
36 lines (25 loc) · 704 Bytes
/
main.yml
File metadata and controls
36 lines (25 loc) · 704 Bytes
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: CI
on:
- push
- pull_request
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up cppcheck
run: sudo apt-get install -y cppcheck
- name: Set up CMake
run: sudo apt install cmake
- name: Set up Valgrind
run: sudo apt-get install valgrind
- name: Set up Doxygen
run: sudo apt-get install -y doxygen
- name: Check source file
run : make check_source_file
- name: Check vector memory
run: make check_memory_vector
- name: Code formatting
run: make format
- name: Make docs
run: make docs