Hassfest Validation #10
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
# Define the name of the workflow | |
name: Hassfest Validation | |
# Define the events that trigger the workflow | |
on: | |
push: | |
pull_request: | |
schedule: | |
- cron: "0 0 * * *" | |
# Define the jobs that the workflow will perform | |
jobs: | |
validate: | |
# Define the environment the job will run on | |
runs-on: "ubuntu-latest" | |
# Define the individual steps that make up the job | |
steps: | |
# Check out the code repository that triggered the workflow | |
- uses: actions/checkout@v3 | |
# Run hassfest on the configuration files | |
- uses: home-assistant/actions/hassfest@master |