Skip to content

eos_connect_develop: bump version to 0.2.31.240; update changelog wit… #569

eos_connect_develop: bump version to 0.2.31.240; update changelog wit…

eos_connect_develop: bump version to 0.2.31.240; update changelog wit… #569

Workflow file for this run

name: Lint
on:
push:
branches:
- master
pull_request:
branches:
- master
# schedule:
# - cron: "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@v6.0.1
- 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@v6.0.1
- name: 🚀 Run Home Assistant Add-on Lint
uses: frenck/action-addon-linter@v2.21
with:
path: "./${{ matrix.path }}"