Skip to content

Bump pytest-homeassistant-custom-component from 0.13.162 to 0.13.168 #1421

Bump pytest-homeassistant-custom-component from 0.13.162 to 0.13.168

Bump pytest-homeassistant-custom-component from 0.13.162 to 0.13.168 #1421

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/[email protected]
- name: Set up Python
uses: actions/[email protected]
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/[email protected]
- name: Set up Python ${{ matrix.python-version }}
uses: actions/[email protected]
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/