29 lines
560 B
YAML
29 lines
560 B
YAML
name: Validate HACS
|
|
on:
|
|
push:
|
|
pull_request:
|
|
jobs:
|
|
ci:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
name: Download repo
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- uses: actions/setup-python@v2
|
|
name: Setup Python
|
|
with:
|
|
python-version: '3.8.x'
|
|
|
|
- uses: actions/cache@v2
|
|
name: Cache
|
|
with:
|
|
path: |
|
|
~/.cache/pip
|
|
key: custom-component-ci
|
|
|
|
- name: HACS Action
|
|
uses: hacs/action@main
|
|
with:
|
|
CATEGORY: integration |