-
Notifications
You must be signed in to change notification settings - Fork 21
64 lines (53 loc) · 1.48 KB
/
tests.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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
name: Linting
on:
push:
branches:
- main
- master
- develop
pull_request:
schedule:
- cron: "0 0 * * *"
env:
DEFAULT_PYTHON: "3.11"
jobs:
pre-commit:
runs-on: "ubuntu-latest"
name: Pre-commit and pytest
steps:
- name: Check out the repository
uses: actions/[email protected]
- name: Set up Python ${{ env.DEFAULT_PYTHON }}
uses: actions/[email protected]
with:
python-version: ${{ env.DEFAULT_PYTHON }}
- name: Install Python modules
run: |
pip install --no-cache-dir -r requirements.txt
# json files on syrupy are broken before 4.0.4, but pytest-homeassistant-custom-component for our current HA
# version relies on 4.0.2
pip install --no-deps syrupy==4.0.4
- name: Run pre-commit on all files
run: |
pre-commit run --all-files --show-diff-on-failure --color=always
- name: Run pytest
run: |
python -m pytest
hacs:
runs-on: "ubuntu-latest"
name: HACS
steps:
- name: Check out the repository
uses: "actions/[email protected]"
- name: HACS validation
uses: "hacs/[email protected]"
with:
category: "integration"
hassfest:
runs-on: "ubuntu-latest"
name: Hassfest
steps:
- name: Check out the repository
uses: "actions/[email protected]"
- name: Hassfest validation
uses: "home-assistant/actions/hassfest@master"