-
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 DCC-EX:devel
Add missing comments and doco
- Loading branch information
Showing
138 changed files
with
12,911 additions
and
1,653 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 |
---|---|---|
@@ -0,0 +1,26 @@ | ||
name: Docs | ||
|
||
on: | ||
push: | ||
branches: [ main ] | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout repo | ||
uses: actions/[email protected] | ||
- name: Requirements | ||
run: | | ||
sudo apt-get install doxygen graphviz | ||
- name: Build docs | ||
run: | | ||
cd docs | ||
# touch _build/html/.nojekyll | ||
doxygen Doxyfile.in | ||
- name: Deploy | ||
uses: JamesIves/github-pages-deploy-action@ba1486788b0490a235422264426c45848eac35c6 | ||
with: | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
branch: gh-pages # The branch the action should deploy to. | ||
folder: docs/_build/html # The folder the action should deploy. |
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,21 @@ | ||
name: Tests | ||
|
||
on: | ||
push: | ||
branches: [main, devel] | ||
pull_request: | ||
branches: [main, devel] | ||
|
||
jobs: | ||
run-tests: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/[email protected] | ||
- name: Install Python Wheel | ||
run: pip install wheel | ||
- name: Install PlatformIO Core | ||
run: pip install -U platformio | ||
- name: Install valgrind | ||
run: sudo apt install -y valgrind | ||
- name: Run GoogleTest | ||
run: python -m platformio test -v -e native_test -a "--gtest_shuffle" -a "--gtest_repeat=5" |
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 |
---|---|---|
|
@@ -2,3 +2,10 @@ | |
.vscode | ||
.DS_Store | ||
config.h | ||
myConfig.h | ||
myDevices.h | ||
build | ||
_build | ||
venv | ||
docs/ex-display/ | ||
platformio.ini.test |
This file was deleted.
Oops, something went wrong.
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
Oops, something went wrong.