Skip to content

CI: run tests on pushes to master #1

CI: run tests on pushes to master

CI: run tests on pushes to master #1

Workflow file for this run

name: Test
on:
push:
branches: [master]
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.13"
cache: pip
- name: Install test dependencies
run: pip install -r requirements_test.txt
- name: Lint
run: ruff check custom_components tests
- name: Run tests
run: pytest -v