We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 717acf0 commit f40b4c8Copy full SHA for f40b4c8
.github/workflows/validate.yml
@@ -0,0 +1,31 @@
1
+name: Push pand PR actions
2
+
3
+on:
4
+ push:
5
+ pull_request:
6
7
+jobs:
8
+ validate:
9
+ runs-on: "ubuntu-latest"
10
+ name: Validate
11
+ steps:
12
+ - uses: "actions/checkout@v2"
13
+ - name: HACS validation
14
+ uses: "hacs/integration/action@master"
15
+ with:
16
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
17
+ CATEGORY: "integration"
18
19
+ - name: Hassfest validation
20
+ uses: "home-assistant/actions/hassfest@master"
21
22
+ style:
23
24
+ name: Check style formatting
25
26
27
+ - uses: "actions/setup-python@v1"
28
29
+ python-version: "3.x"
30
+ - run: python3 -m pip install black
31
+ - run: black .
0 commit comments