Avoid copying ldisc_dev_t and ldisc_config_t #110
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: Format CI | |
on: [push, pull_request] | |
jobs: | |
check-format: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out the repository | |
uses: actions/checkout@v3 | |
- name: Check code format | |
run: | | |
clang-format -n -Werror $(find -not -path "./build/*" -name "*.[ch]") |