Bump actions/checkout from 4.1.7 to 4.2.0 #2307
Workflow file for this run
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/[email protected] | |
- name: Set up Python ${{ env.DEFAULT_PYTHON }} | |
uses: actions/[email protected] | |
with: | |
python-version: ${{ env.DEFAULT_PYTHON }} | |
- name: Install requirements | |
run: | | |
pip install pip | |
pip install -r requirements_dev.txt | |
- 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/[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" | |
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 pip | |
pip install -r requirements_dev.txt | |
- name: Tests suite | |
run: | | |
pytest -p no:sugar | |
- name: Upload coverage to Codecov | |
uses: codecov/[email protected] | |
with: | |
env_vars: OS,PYTHON | |
verbose: true |