-
-
Notifications
You must be signed in to change notification settings - Fork 2
39 lines (33 loc) · 923 Bytes
/
validate.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
name: "Validate - Hassfest & Hacs"
on:
workflow_dispatch:
schedule:
- cron: "0 0 * * *"
push:
paths:
- "custom_components/**"
pull_request:
paths:
- "custom_components/**"
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
hassfest: # https://developers.home-assistant.io/blog/2020/04/16/hassfest
name: "Validate Hassfest"
runs-on: "ubuntu-latest"
steps:
- name: "Checkout the repository"
uses: "actions/checkout@v4"
- name: "Run hassfest validation"
uses: "home-assistant/actions/hassfest@master"
hacs: # https://github.com/hacs/action
name: "Validate HACS"
runs-on: "ubuntu-latest"
steps:
- name: "Checkout the repository"
uses: "actions/checkout@v4"
- name: "Run HACS validation"
uses: "hacs/action@main"
with:
category: "integration"