fixed same error #8
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: # Definisce quando eseguire questi controlli | |
push: # Quando viene fatto un push | |
pull_request: # Quando viene creata una pull request | |
schedule: | |
- cron: "0 0 * * *" # Una volta al giorno a mezzanotte | |
jobs: | |
validate: | |
runs-on: "ubuntu-latest" | |
steps: | |
- uses: "actions/checkout@v3" # Scarica il codice del repository | |
- uses: "home-assistant/actions/hassfest@master" # Esegue hassfest | |
- uses: "hacs/action@main" # Esegue la validazione HACS | |
with: | |
category: "integration" |