Skip to content

build(deps): bump mypy from 1.11.1 to 1.11.2 #386

build(deps): bump mypy from 1.11.1 to 1.11.2

build(deps): bump mypy from 1.11.1 to 1.11.2 #386

Workflow file for this run

name: Pull actions
on:
pull_request:
push:
branches:
- main
jobs:
validate:
runs-on: "ubuntu-latest"
name: Validate
steps:
- name: πŸ“₯ Checkout the repository
uses: actions/checkout@v4
- 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/checkout@v4
- name: πŸ› οΈ Set up Python
uses: actions/setup-python@v5
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"
- "3.12"
steps:
- name: πŸ“₯ Checkout the repository
uses: actions/checkout@v4
- name: πŸ› οΈ Set up Python
uses: actions/setup-python@v5
with:
fetch-depth: 2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
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/upload-artifact@v4"
with:
name: coverage-data
path: "coverage.xml"
coverage:
runs-on: ubuntu-latest
needs: tests
steps:
- name: πŸ“₯ Checkout the repository
uses: actions/checkout@v4
with:
fetch-depth: 2
- name: πŸ“₯ Download coverage data
uses: actions/download-artifact@v4
with:
name: coverage-data
- name: πŸ“€ Upload coverage report
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }} # required