Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 28 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# .github/workflows/build.yml
name: build
on:
push:
branches: [main, 'dev/**']
pull_request:
branches: [main]

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: Cache PlatformIO
uses: actions/cache@v4
with:
path: |
~/.cache/pip
~/.platformio/.cache
key: ${{ runner.os }}-pio-${{ hashFiles('platformio.ini') }}
restore-keys: ${{ runner.os }}-pio-
- name: Install PlatformIO
run: pip install platformio
- name: Build
run: pio run
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,5 @@
include/version.h
/net-commander
docs
data
data
test
245 changes: 157 additions & 88 deletions README.md

Large diffs are not rendered by default.

127 changes: 0 additions & 127 deletions docs/chat_note.md

This file was deleted.

Loading
Loading