Skip to content

Bump aiohttp from 3.9.2 to 3.9.4 in the pip group across 1 directory #45

Bump aiohttp from 3.9.2 to 3.9.4 in the pip group across 1 directory

Bump aiohttp from 3.9.2 to 3.9.4 in the pip group across 1 directory #45

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/