Release spec for Version 1.0 #17
This file contains hidden or 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
| name: Firmware bulid | |
| on: [push] | |
| jobs: | |
| builld_and_test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install dependencies | |
| run: sudo apt-get install make gcc-avr avr-libc | |
| - name: Build firmware | |
| run: | | |
| cd ${{github.workspace}} | |
| make || exit |