Skip to content

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

Bump actions/setup-python from 5.2.0 to 5.3.0

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

Workflow file for this run

name: "Lint"
on:
push:
branches:
- "main"
pull_request:
branches:
- "main"
jobs:
lint:
name: "Lint using Black"
runs-on: "ubuntu-latest"
steps:
- name: "Checkout the repository"
uses: "actions/checkout@v4.1.5"
- name: "Set up Python"
uses: actions/setup-python@v5.3.0
with:
python-version: "3.12"
cache: "pip"
- name: "Install requirements"
run: python3 -m pip install -r requirements.txt
- name: "Run Black"
uses: psf/black@stable
with:
options: "--check --verbose"
src: "./custom_components/proconip_pool_controller"