build(deps): bump tox from 4.8.0 to 4.9.0 #175
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: Pull actions | |
on: | |
pull_request: | |
jobs: | |
validate: | |
runs-on: "ubuntu-latest" | |
name: Validate | |
steps: | |
- name: π₯ Checkout the repository | |
uses: actions/[email protected] | |
- name: HACS validation | |
uses: "hacs/action@main" | |
with: | |
category: "integration" | |
ignore: brands | |
- name: Hassfest validation | |
uses: "home-assistant/actions/hassfest@master" | |
style: | |
runs-on: "ubuntu-latest" | |
name: Check style formatting | |
steps: | |
- name: π₯ Checkout the repository | |
uses: actions/[email protected] | |
- name: π οΈ Set up Python | |
uses: actions/[email protected] | |
with: | |
python-version: "3.x" | |
- run: python3 -m pip install black | |
- run: black . | |
tests: | |
runs-on: "ubuntu-latest" | |
name: Run tests | |
strategy: | |
matrix: | |
python-version: | |
# - "3.10" | |
- "3.11" | |
steps: | |
- name: π₯ Checkout the repository | |
uses: actions/[email protected] | |
- name: π οΈ Set up Python | |
uses: actions/[email protected] | |
with: | |
fetch-depth: 2 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/[email protected] | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: π¦ Install requirements | |
run: | | |
pip install tox tox-gh-actions | |
- name: π Test with tox | |
run: tox | |
- name: π€ Upload coverage to Codecov | |
uses: "actions/[email protected]" | |
with: | |
name: coverage-data | |
path: "coverage.xml" | |
coverage: | |
runs-on: ubuntu-latest | |
needs: tests | |
steps: | |
- name: π₯ Checkout the repository | |
uses: actions/[email protected] | |
with: | |
fetch-depth: 2 | |
- name: π₯ Download coverage data | |
uses: actions/[email protected] | |
with: | |
name: coverage-data | |
- name: π€ Upload coverage report | |
uses: codecov/[email protected] |