I'm adding Arduino lint to my GitHub workflows and saw something worth updating:  The arduino-lint.yml file should have a name field to look better. ```yml 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 ```