Fix a bug where if some options don't exist on a library it fails to deserialise it causing a crash #580
Workflow file for this run
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: Validate | |
on: | |
push: | |
branches: | |
- "main" | |
pull_request: | |
branches: | |
- "main" | |
schedule: | |
- cron: "00 12 * * *" | |
workflow_dispatch: | |
jobs: | |
hassfest: # https://developers.home-assistant.io/blog/2020/04/16/hassfest | |
name: Hassfest validation | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout | |
uses: "actions/[email protected]" | |
- name: validation | |
uses: home-assistant/actions/hassfest@master | |
validate-hacs: # https://github.com/hacs/action | |
name: HACS validation | |
runs-on: "ubuntu-latest" | |
steps: | |
- name: checkout | |
uses: "actions/[email protected]" | |
- name: validation | |
uses: "hacs/action@main" | |
with: | |
category: "integration" |