Merge pull request #103 from trilitech/palmer@functori@bump-ragger-ve… #572
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: Code style check | |
# Use: | |
# LedgerHQ/ledger-app-workflows/.github/workflows/reusable_lint.yml | |
# once their lint-checker has been updated | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- master | |
- main | |
- develop | |
pull_request: | |
jobs: | |
job_lint: | |
name: Lint | |
runs-on: ubuntu-latest | |
steps: | |
- name: Clone | |
uses: actions/checkout@v2 | |
- name: Lint | |
uses: DoozyX/[email protected] | |
with: | |
source: "./" | |
extensions: "h,c" | |
clangFormatVersion: 17 |