use full_reset_and_init return value in init and reset_learned #2331
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 |