feat: Add CMake support and basic native example (#2) #5
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
| # Run the reusable PlatformIO CI on every pull request and on pushes to main. | |
| # Uploads coverage to Codecov (badge tracks main, PRs get the coverage diff). | |
| name: CI | |
| on: | |
| pull_request: | |
| push: | |
| branches: [main] | |
| permissions: | |
| contents: read | |
| pull-requests: write # allows the format-suggest job to post review suggestions | |
| jobs: | |
| ci: | |
| uses: alkonosst/templates/.github/workflows/reusable-pio-ci.yml@v1 | |
| with: | |
| upload-codecov: true | |
| secrets: | |
| codecov-token: ${{ secrets.CODECOV_TOKEN }} |