Skip to content

Home Assistant CI

Home Assistant CI #748

Workflow file for this run

name: Home Assistant CI
on:
push:
branches:
- main
pull_request:
schedule:
- cron: 0 12 * * *
jobs:
home-assistant:
name: Home Assistant Config
runs-on: ubuntu-latest
strategy:
matrix:
version: [stable, beta]
steps:
- name: Checkout Repo
uses: actions/checkout@v2
- name: 📥 Clone custom component - Powercalc
run: |
git clone https://github.com/bramstroker/homeassistant-powercalc.git
mv -v homeassistant-powercalc/custom_components/* custom_components
- name: 📥 Clone custom component - Multiscrape
run: |
git clone https://github.com/danieldotnl/ha-multiscrape.git
mv -v ha-multiscrape/custom_components/* custom_components
- run: |
pwd
ls -la
- name: Home Assistant Check
uses: frenck/action-home-assistant@v1
with:
path: .
secrets: secrets.example.yaml
version: '${{ matrix.version }}'