Build #64
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: Build | |
on: # yamllint disable-line rule:truthy | |
push: | |
branches: | |
- master | |
pull_request: | |
schedule: | |
- cron: "17 6 * * *" | |
workflow_dispatch: | |
env: | |
DEFAULT_PYTHON: "3.10" | |
jobs: | |
pre-commit: | |
runs-on: "ubuntu-latest" | |
name: Pre-commit | |
steps: | |
- name: Check out the repository | |
uses: actions/checkout@v4.1.1 | |
- name: Set up Python ${{ env.DEFAULT_PYTHON }} | |
uses: actions/setup-python@v4.7.0 | |
with: | |
python-version: ${{ env.DEFAULT_PYTHON }} | |
- name: Install requirements | |
run: | | |
pip install pip | |
pip install -r requirements.test.txt | |
pip install pre-commit mypy pylint | |
- name: Run pre-commit on all files | |
run: | | |
pre-commit run --all-files --show-diff-on-failure --color=always | |
hacs: | |
runs-on: "ubuntu-latest" | |
name: HACS | |
steps: | |
- name: Check out the repository | |
uses: "actions/checkout@v4.1.1" | |
- name: HACS validation | |
uses: "hacs/action@22.5.0" | |
with: | |
category: "integration" | |
hassfest: | |
runs-on: "ubuntu-latest" | |
name: Hassfest | |
steps: | |
- name: Check out the repository | |
uses: "actions/checkout@v4.1.1" | |
- name: Hassfest validation | |
uses: "home-assistant/actions/hassfest@master" | |
tests: | |
runs-on: "ubuntu-latest" | |
name: Run tests | |
steps: | |
- name: Check out code from GitHub | |
uses: "actions/checkout@v4.1.1" | |
- name: Setup Python ${{ env.DEFAULT_PYTHON }} | |
uses: "actions/setup-python@v4.7.0" | |
with: | |
python-version: ${{ env.DEFAULT_PYTHON }} | |
- name: Install requirements | |
run: | | |
pip install pip | |
pip install -r requirements.test.txt | |
- name: Tests suite | |
run: | | |
pytest -p no:sugar | |
- name: Upload coverage to Codecov | |
uses: codecov/codecov-action@v3.1.4 | |
with: | |
env_vars: OS,PYTHON | |
verbose: true |