Release workflows now use template-style checkout retry and auto-prer… #1
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 (Advisory) | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - main | |
| - feature/** | |
| permissions: | |
| contents: read | |
| jobs: | |
| metadata_lint: | |
| name: Metadata Lint (advisory) | |
| runs-on: ubuntu-latest | |
| continue-on-error: true | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Arduino Lint | |
| uses: arduino/arduino-lint-action@v1 | |
| with: | |
| library-manager: false | |
| project-type: library |