date templates refactor fix #453
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
## 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 }}" |