Change interface for agi::error_detection::crc8 and fix linting error… #22
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: build | |
on: | |
# Run actions fow all branches | |
push: | |
branches: ["**"] | |
pull_request: | |
branches: ["**"] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
# - name: Install clang-tidy | |
# run: sudo apt install clang-tidy | |
- name: Set up CMake | |
run: cmake -B build | |
# run: cmake cli/ -B cli/build -DENABLE_CLANG_TIDY=ON | |
- name: Build project | |
run: cmake --build build |