Update dependency Electronic Cats PN7150 to v3 #198
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: "Lint and test-build" | |
| on: | |
| push: | |
| branches: | |
| - dev | |
| pull_request: | |
| jobs: | |
| build-poc: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v6.0.0 | |
| - name: Set up Python | |
| uses: actions/setup-python@v6.0.0 | |
| with: | |
| python-version: 3.13 | |
| - name: Install Arduino dependencies | |
| run: | | |
| export PATH=$HOME/.local/bin/:$PATH | |
| ./.devcontainer/devcontainer-postcreate.sh | |
| - name: Build POC | |
| run: | | |
| export PATH=$HOME/.local/bin/:$PATH | |
| ./build_all.sh |