Beta check #52
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
name: Beta check | |
# yamllint disable-line rule:truthy | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: "0 9 1-7 * 3" | |
jobs: | |
beta: | |
name: Home Assistant config check | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup custom components | |
run: | | |
./scripts/update_resources init_custom_components | |
- name: Mock secrets | |
uses: golles/mock-yaml-secrets-action@v1 | |
with: | |
configFile: ".github/workflows/mock-secrets-config.json" | |
- name: Home Assistant configuration check | |
uses: frenck/action-home-assistant@v1.4 | |
with: | |
path: "." | |
version: beta |