-
-
Notifications
You must be signed in to change notification settings - Fork 110
76 lines (67 loc) · 1.9 KB
/
validation.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
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
65
66
67
68
69
70
71
72
73
74
75
76
name: Linting
on:
push:
branches:
- main
- master
- dev
pull_request:
branches:
- main
- master
- dev
env:
DEFAULT_PYTHON: 3.9
jobs:
pre-commit:
runs-on: "ubuntu-latest"
name: Pre-commit
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: Upgrade pip
run: |
pip install --constraint=.github/workflows/constraints.txt pip
pip --version
- name: Install Python modules
run: |
pip install --constraint=.github/workflows/constraints.txt pre-commit black flake8 reorder-python-imports autoflake
- name: Run pre-commit on all files
run: |
pre-commit run --files custom_components/* --show-diff-on-failure --color=always
hacs:
runs-on: "ubuntu-latest"
name: HACS Validation
steps:
- name: Check out the repository
uses: "actions/[email protected]"
- name: HACS validation
uses: "hacs/[email protected]"
with:
category: "integration"
# tests:
# runs-on: "ubuntu-latest"
# name: Run tests
# steps:
# - name: Check out code from GitHub
# uses: "actions/[email protected]"
# - name: Setup Python ${{ env.DEFAULT_PYTHON }}
# uses: "actions/[email protected]"
# with:
# python-version: ${{ env.DEFAULT_PYTHON }}
# - name: Install requirements
# run: |
# pip install --constraint=.github/workflows/constraints.txt pip
# pip install -r requirements_test.txt
# - name: Tests suite
# run: |
# pytest \
# --timeout=9 \
# --durations=10 \
# -n auto \
# -p no:sugar \
# tests