Skip to content

Bump actions/setup-python from 5.2.0 to 5.3.0 #116

Bump actions/setup-python from 5.2.0 to 5.3.0

Bump actions/setup-python from 5.2.0 to 5.3.0 #116

Workflow file for this run

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