Skip to content

Bump idna from 3.4 to 3.7 #43

Bump idna from 3.4 to 3.7

Bump idna from 3.4 to 3.7 #43

Workflow file for this run

name: check
on:
push:
branches:
- main
pull_request:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
check-style:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install poetry
run: pipx install poetry
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: "3.11"
cache: "poetry"
- name: Install dependencies
run: poetry install
- name: Run flake8
run: poetry run flake8 switchbot_api/
- name: Run mypy
run: poetry run mypy switchbot_api/