Skip to content

Commit a4c563d

Browse files
adding pipeline, logo and license
1 parent 215a9f8 commit a4c563d

File tree

5 files changed

+685
-1
lines changed

5 files changed

+685
-1
lines changed

.github/workflows/hacs.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: HACS Integration
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
pull_request:
8+
branches:
9+
- main
10+
11+
jobs:
12+
validate:
13+
runs-on: ubuntu-latest
14+
steps:
15+
- uses: actions/checkout@v3
16+
- name: Set up Python
17+
uses: actions/setup-python@v4
18+
with:
19+
python-version: '3.10'
20+
- name: Install dependencies
21+
run: |
22+
python -m pip install --upgrade pip
23+
pip install hacs
24+
- name: Validate HACS
25+
run: |
26+
hacs validate --action validate

0 commit comments

Comments
 (0)