Preserve BLE RX app settings across runs, and changed BLE app settings file names #1151
Workflow file for this run
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: Check formatting | |
on: [pull_request] | |
jobs: | |
check_date: | |
runs-on: ubuntu-latest | |
name: Check formatting | |
strategy: | |
matrix: | |
path: | |
- "firmware/common" | |
- "firmware/application" | |
- "firmware/baseband" | |
steps: | |
- uses: actions/checkout@v2 | |
- name: print latest_commit | |
run: echo ${{ github.sha }} | |
- name: clang-format Check | |
uses: jidicula/[email protected] | |
with: | |
check-path: ${{ matrix.path }} | |
fallback-style: Chromium |