Skip to content

Commit b43d14c

Browse files
committed
Add gitignore and github workflow
1 parent 765f419 commit b43d14c

File tree

2 files changed

+84
-0
lines changed

2 files changed

+84
-0
lines changed

.github/workflows/deploy-docs.yml

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
name: Deploy Documentation to GitHub Pages
2+
3+
on:
4+
# Trigger the workflow on pushes to the master branch
5+
push:
6+
branches:
7+
- master
8+
9+
# Allows you to run this workflow manually from the Actions tab
10+
workflow_dispatch:
11+
12+
# Allow GITHUB_TOKEN to create deployment
13+
permissions:
14+
contents: write # Required to push to gh-pages branch
15+
16+
jobs:
17+
deploy:
18+
runs-on: ubuntu-latest # Use the latest Ubuntu runner
19+
20+
steps:
21+
- name: Checkout code
22+
uses: actions/checkout@v4 # Checks out your repository code
23+
24+
- name: Set up Python
25+
uses: actions/setup-python@v5
26+
with:
27+
python-version: 3.x # Use a recent Python 3 version
28+
29+
- name: Install dependencies
30+
run: |
31+
pip install mkdocs mkdocs-material # Add any other mkdocs plugins you use here!
32+
# Example: pip install mkdocs mkdocs-material mkdocstrings mkdocstrings-python pymdown-extensions
33+
34+
- name: Deploy documentation
35+
run: mkdocs gh-deploy --force --clean --remote-name origin --message "Deploy documentation from GitHub Actions"

.gitignore

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
2+
tflite/bootloader/
3+
tflite/modules/
4+
tflite/tools/
5+
tflite/zephyr/
6+
tflite/build*
7+
tflite/log.log
8+
tiny_ml/
9+
*pycache*
10+
Results/
11+
*utils/datasets.py
12+
*.cc
13+
#*.tflite
14+
*.h5
15+
tests-resnet.ipynb
16+
tests-tflite.ipynb
17+
test-pyserial.ipynb
18+
can-be-deleted-later.ipynb
19+
train-conv1d-network.ipynb
20+
train-resnet.ipynb
21+
/measure_energy_consumption.ipynb
22+
datasets/downloads/
23+
README.txt
24+
nrf-command-line-tools*
25+
*.ipynb_checkpoints
26+
get_ops.py
27+
*build*
28+
*power_*
29+
venv
30+
*airway*
31+
*venv*
32+
tflite/optional/*
33+
34+
datasets/data/*
35+
baselines/private/
36+
*EvoVis*
37+
38+
*.keras
39+
40+
*.err
41+
*.out
42+
*.svg
43+
44+
baselines/cifar10/
45+
baselines/daliac/
46+
baselines/emg_airob/
47+
baselines/speech_commands/
48+
49+

0 commit comments

Comments
 (0)