add cb that is called on fatal error (no device) #12
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
# Run clang-tidy | |
name: Clang-tidy | |
on: | |
push: | |
jobs: | |
validate_codestyle_clang_format: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout repository and submodules | |
uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- name: Install Dependencies | |
run: | | |
sudo apt install clang-format | |
- name: Validate | |
run: | | |
./run_clang_format.sh |