Skip to content

fix merged aiobmsble branch #1788

fix merged aiobmsble branch

fix merged aiobmsble branch #1788

Workflow file for this run

name: Run tests for integrations
on:
push:
pull_request:
workflow_dispatch:
schedule:
- cron: '0 5 * * 6'
permissions:
contents: read
jobs:
validate:
runs-on: "ubuntu-latest"
steps:
- name: "Checkout the repository"
uses: "actions/checkout@v6"
- name: "Set up Python"
uses: actions/setup-python@main
with:
python-version: "3.13"
cache: "pip"
- name: Install dependencies
run: pip install -r requirements_test.txt
- name: Run tests and collect coverage
run: pytest