Skip to content

date templates refactor fix #453

date templates refactor fix

date templates refactor fix #453

Workflow file for this run

---
## Source: https://github.com/frenck/home-assistant-config/tree/master/.github/workflows
name: build
on:
push:
jobs:
home_assistant:
name: "Home Assistant Core ${{ matrix.version }} configuration check."
runs-on: ubuntu-latest
strategy:
matrix:
version: ["stable", "beta"]
#version: ["stable", "beta", "dev"]
steps:
- name: ⤵️ Check out configuration from GitHub.
uses: actions/[email protected]
- name: 🙈 Ignore integrations + entities which only work on my home network.
run:
rm -f ./integration_entities/sensors/datetime/date_next_*.yaml;
rm -f ./integration_entities/sensors/weather/sun2.yaml;
rm -f ./integration_entities/templates/sensors/weather/outdoor_illuminance.yaml;
rm -f ./integrations/*.yaml;
rm -rf ./integration_entities/cameras;
rm -rf ./integration_entities/notify/platforms;
rm -rf ./integration_entities/sensors/integrations;
- name: 🚀 Run Home Assistant configuration check.
uses: frenck/[email protected]
with:
path: "."
secrets: ./tests/fake_secrets.yaml
version: "${{ matrix.version }}"