This repository has been archived by the owner on Jun 4, 2024. It is now read-only.
Makefile: Use APP_CUSTOM_BUILD_DEPENDENCIES instead of DEP_DIR #382
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: Code style check | |
on: [push, pull_request] | |
jobs: | |
job_lint: | |
name: Lint | |
runs-on: ubuntu-latest | |
steps: | |
- name: Clone | |
uses: actions/checkout@v2 | |
- name: Lint | |
uses: DoozyX/clang-format-lint-action@v0.11 | |
with: | |
source: "./" | |
extensions: "h,c" | |
clangFormatVersion: 10 |