Skip to content

Bump actions/setup-python from 5.1.1 to 5.2.0 #9

Bump actions/setup-python from 5.1.1 to 5.2.0

Bump actions/setup-python from 5.1.1 to 5.2.0 #9

Workflow file for this run

name: Check
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.12"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5.2.0
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements-test.txt
- name: ruff
run: |
ruff check custom_components
- name: mypy
run: |
mypy custom_components