fix: fallback to mode set by COM_POSCTL_NAVL upon navigation loss in … #15
This file contains hidden or 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: Clang Tidy | |
| on: | |
| push: | |
| branches: | |
| - 'main' | |
| paths-ignore: | |
| - 'docs/**' | |
| - '.github/**' | |
| pull_request: | |
| branches: | |
| - '*' | |
| paths-ignore: | |
| - 'docs/**' | |
| - '.github/**' | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Testing (clang-tidy-quiet) | |
| uses: addnab/docker-run-action@v3 | |
| with: | |
| image: px4io/px4-dev-clang:2021-09-08 | |
| options: -v ${{ github.workspace }}:/workspace | |
| run: | | |
| cd /workspace | |
| git config --global --add safe.directory /workspace | |
| make clang-tidy-quiet |