You've already forked M5Unit-DISTANCE
mirror of
https://github.com/m5stack/M5Unit-DISTANCE.git
synced 2026-05-20 11:35:18 -07:00
28 lines
519 B
YAML
28 lines
519 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
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: arduino/arduino-lint-action@v2
|
|
with:
|
|
library-manager: update
|
|
compliance: strict
|
|
project-type: all
|