Skip to content

Bump pytest-homeassistant-custom-component from 0.13.183 to 0.13.184 #1520

Bump pytest-homeassistant-custom-component from 0.13.183 to 0.13.184

Bump pytest-homeassistant-custom-component from 0.13.183 to 0.13.184 #1520

Workflow file for this run

name: Test
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
lint:
runs-on: ubuntu-latest
continue-on-error: true
steps:
- name: Check out code from GitHub
uses: actions/checkout@v4.1.1
- name: Set up Python
uses: actions/setup-python@v5.3.0
with:
python-version: "3.12"
- name: Install dependencies
run: |
sudo apt-get update
python -m pip install --upgrade pip
pip install .[test]
- name: Lint/test with pre-commit
run: pre-commit run --all-files
test:
runs-on: ubuntu-latest
continue-on-error: true
strategy:
fail-fast: false
matrix:
python-version:
- "3.12"
steps:
- name: Check out code from GitHub
uses: actions/checkout@v4.1.1
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5.3.0
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
sudo apt-get update
python -m pip install --upgrade pip
pip install .[test]
- name: Pytest
run: pytest tests/