Validate with hassfest #489
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 with hassfest | |
on: | |
push: | |
branches: | |
- main # Run on pushes to the main branch | |
paths: | |
- 'custom_components/violet_pool_controller/**' | |
- '.github/workflows/hassfest.yml' # Trigger if this workflow file changes | |
pull_request: | |
branches: | |
- main | |
paths: | |
- 'custom_components/violet_pool_controller/**' | |
- '.github/workflows/hassfest.yml' | |
schedule: | |
- cron: "0 0 * * *" # Run daily at midnight UTC | |
workflow_dispatch: # Allow manual runs | |
jobs: | |
validate: | |
runs-on: "ubuntu-latest" | |
steps: | |
- uses: "actions/checkout@v4" | |
with: | |
fetch-depth: 0 # Fetch all history, sometimes needed for comparisons | |
- uses: home-assistant/actions/hassfest@master |