You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
425 B
YAML
16 lines
425 B
YAML
2 years ago
|
name: Arduino Lint
|
||
|
on:
|
||
|
push:
|
||
|
branches: [ master, release/v8.* ]
|
||
|
pull_request:
|
||
|
branches: [ master, release/v8.* ]
|
||
|
jobs:
|
||
|
lint:
|
||
|
if: ${{ github.event_name != 'pull_request' || github.repository != github.event.pull_request.head.repo.full_name }}
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- uses: actions/checkout@v2
|
||
|
- uses: arduino/arduino-lint-action@v1
|
||
|
with:
|
||
|
library-manager: update
|