diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..fa2f3f9 --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,21 @@ +name: Build firmware + +on: + push: + branches: ['**'] + +jobs: + build: + runs-on: ubuntu-latest + container: + image: debian:trixie + + steps: + - uses: actions/checkout@v6 + + - name: Install dependencies + run: | + apt update + apt install make gcc sdcc xxd python-is-python3 libjson-c-dev -y + - name: Make project + run: make \ No newline at end of file diff --git a/.gitignore b/.gitignore index 86d2948..3ccb281 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,5 @@ .gitignore +.idea/ output/ html_data.c html_data.h