Delete lint_ha.yaml

This commit is contained in:
Alexandre
2022-01-26 13:53:30 +01:00
committed by GitHub
parent 582157e7c7
commit 9640303ac9

View File

@@ -1,35 +0,0 @@
name: Weekly Codebase Lint
on:
schedule:
- cron: "0 0 * * 0"
jobs:
find:
name: Find add-ons
runs-on: ubuntu-latest
outputs:
addons: ${{ steps.addons.outputs.addons_list }}
steps:
- name: ⤵️ Check out code from GitHub
uses: actions/checkout@v2.4.0
- name: 🔍 Find add-on directories
id: addons
uses: home-assistant/actions/helpers/find-addons@master
lint:
name: Lint add-on ${{ matrix.path }}
runs-on: ubuntu-latest
needs: find
strategy:
matrix:
path: ${{ fromJson(needs.find.outputs.addons) }}
steps:
- name: ⤵️ Check out code from GitHub
uses: actions/checkout@v2.4.0
- name: 🚀 Run Home Assistant Add-on Lint
uses: frenck/action-addon-linter@v2.6
with:
path: "./${{ matrix.path }}"