您最多能選擇 25 個主題
主題必須以字母或數字為開頭,可包含連接號「-」且最長為 35 個字元。
15 行
425 B
15 行
425 B
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@v4
|
|
- uses: arduino/arduino-lint-action@v1
|
|
with:
|
|
library-manager: update
|
|
|