-
-
Notifications
You must be signed in to change notification settings - Fork 0
33 lines (33 loc) · 929 Bytes
/
test.yaml
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
name: "Custom Component CI Test"
on:
push:
branches: [main]
pull_request:
schedule:
- cron: '0 0 * * *'
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
- uses: actions/cache@v2
name: Cache
with:
path: |
~/.cache/pip
key: custom-component-ci
- uses: hacs/action@main
with:
CATEGORY: integration
# DON'T DO THIS
# I'm just doing this because I'm not testing whether my blueprint integration is up to date
ignore: "archived brands description hacs hacsjson images information issues requirements topics wheels manifest"
- uses: KTibow/ha-blueprint@main
name: CI
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}