Skip to content

Merge pull request #11 from bramstroker/feat/retry #35

Merge pull request #11 from bramstroker/feat/retry

Merge pull request #11 from bramstroker/feat/retry #35

Workflow file for this run

name: Lint
on:
workflow_dispatch:
push:
paths:
- '**.py'
- 'poetry.lock'
pull_request:
paths:
- '**.py'
- 'poetry.lock'
jobs:
mypy:
runs-on: ubuntu-latest
steps:
- name: Checkout project
uses: actions/checkout@v4
- uses: ./.github/workflows/poetry-composite-action
- name: Run MyPy
run: |
poetry run mypy ./custom_components/state_webhook
ruff:
runs-on: ubuntu-latest
steps:
- name: Checkout project
uses: actions/checkout@v4
- uses: ./.github/workflows/poetry-composite-action
- name: Run Ruff
run: |
poetry run ruff check .