-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #23 from niwciu/release/0.1.0
Release v0.1.0
- Loading branch information
Showing
604 changed files
with
343,706 additions
and
21,949 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
name: clang-format Check | ||
on: | ||
name: Run clang-format Check | ||
on: | ||
workflow_dispatch: | ||
push: | ||
branches: [main, develop] | ||
pull_request: | ||
branches: [main, develop] | ||
# on: workflow_dispatch | ||
jobs: | ||
formatting-check: | ||
name: Formatting Check | ||
|
@@ -18,7 +18,7 @@ jobs: | |
exclude: '(template|unity|hw_test)' # Exclude file paths containing "template" or "unity" | ||
|
||
steps: | ||
- uses: actions/[email protected].0 | ||
- uses: actions/[email protected].1 | ||
- name: Run clang-format style check for C/C++/Protobuf programs. | ||
uses: jidicula/[email protected] | ||
with: | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
name: Run cppcheck-action | ||
on: | ||
workflow_dispatch: | ||
push: | ||
branches: [main, develop] | ||
pull_request: | ||
branches: [main, develop] | ||
|
||
jobs: | ||
cppcheck-annotations_scr: | ||
name: cppcheck-annotations /src | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/[email protected] | ||
|
||
- name: Run cppcheck-annotation-action for src | ||
uses: Konstantin343/[email protected] | ||
with: | ||
std: 'c99' | ||
platform: 'unix64' | ||
log-level: 'verbose' | ||
sources: './src' | ||
annotation-failures: 'warning' | ||
# suppress: 'unusedFunction' | ||
# annotation-level-default: 'error' | ||
- name: Annotate lines with errors src | ||
uses: yuzutech/[email protected] | ||
with: | ||
repo-token: "${{ secrets.GITHUB_TOKEN }}" | ||
title: 'Results of CppCheck src files' | ||
input: 'annotations.json' | ||
- name: Run cppcheck-annotation-action for tests | ||
uses: Konstantin343/[email protected] | ||
with: | ||
std: 'c99' | ||
platform: 'unix64' | ||
log-level: 'verbose' | ||
sources: './test/lcd_hd44780' | ||
annotation-failures: 'warning' | ||
# suppress: 'unusedFunction' | ||
# annotation-level-default: 'error' | ||
- name: Annotate lines with errors test_src | ||
uses: yuzutech/[email protected] | ||
with: | ||
repo-token: "${{ secrets.GITHUB_TOKEN }}" | ||
title: 'Results of CppCheck test lcd_hd44780 files' | ||
input: 'annotations.json' | ||
|
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
name: Run Lizard Library Check | ||
on: | ||
workflow_dispatch: | ||
push: | ||
branches: [main, develop] | ||
pull_request: | ||
branches: [main, develop] | ||
jobs: | ||
lizard: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/[email protected] | ||
- name: Lizard Runner | ||
uses: Uno-Takashi/Lizard-Runner@v3 | ||
with: | ||
path: "./src" | ||
CCN: "12" | ||
Threshold: "nloc=30" | ||
language: "cpp" | ||
verbose: "true" | ||
arguments: "4" | ||
|
||
|
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,17 @@ | ||
name: self-hosted test | ||
# on: [push, pull_request] | ||
on: workflow_dispatch | ||
on: | ||
workflow_dispatch: | ||
# push: | ||
# branches: [main, develop] | ||
# pull_request: | ||
# branches: [main, develop] | ||
jobs: | ||
formatting_check_docker_runner: | ||
name: Gcc_test | ||
runs-on: test-runner | ||
steps: | ||
- name: Checkout | ||
uses: actions/[email protected].0 | ||
uses: actions/[email protected].1 | ||
|
||
- name: test | ||
run: arm-none-eabi-gcc --version | ||
|
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
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.