arduino/arduino-lint-action

name: Arduino-LINT should be added in YML file (low prio)

RobTillaart opened this issue · 1 comments

I'm adding Arduino lint to my GitHub workflows and saw something worth updating:

image

The arduino-lint.yml file should have a name field to look better.

name: Arduino-lint

on: [push, pull_request]
jobs:
  lint:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v2
      - uses: arduino/arduino-lint-action@v1
        with:
          library-manager: update
          compliance: strict

This is how it looks like when name field is added

image