Added reporting info for CWR #67
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Pull requests | |
on: pull_request | |
concurrency: | |
group: pull-requests-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
lint: | |
name: "Linting" | |
runs-on: "ubuntu-latest" | |
steps: | |
- name: "Clone repo" | |
uses: actions/checkout@v3 | |
- name: "Set up Python" | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.10' | |
- name: "Install Python dependencies" | |
run: pip install black flake8 | |
- name: "Run linters" | |
uses: wearerequired/lint-action@v2 | |
with: | |
auto_fix: false | |
black: true | |
flake8: true | |
- name: "Hassfest" | |
uses: "home-assistant/actions/hassfest@master" | |
validate: | |
name: "Validate hacs" | |
runs-on: "ubuntu-latest" | |
steps: | |
- name: "Clone repo" | |
uses: actions/checkout@v3 | |
- name: "HACS validation" | |
uses: hacs/action@main | |
with: | |
category: "integration" |