mirror of
https://github.com/m5stack/M5UnitUnified.git
synced 2026-05-20 11:24:51 -07:00
34 lines
632 B
YAML
34 lines
632 B
YAML
name: Arduino Lint Check
|
|
on:
|
|
push:
|
|
branches: [ master, main ]
|
|
pull_request:
|
|
branches: [ master, main ]
|
|
workflow_dispatch:
|
|
|
|
defaults:
|
|
run:
|
|
shell: bash
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
lint:
|
|
name: Lint Check
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 12
|
|
strategy:
|
|
max-parallel: 20
|
|
matrix:
|
|
include:
|
|
- shard: 1
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: arduino/arduino-lint-action@v2
|
|
with:
|
|
library-manager: update
|
|
compliance: strict
|
|
project-type: all
|