Skip to content

Create CODEOWNERS

Create CODEOWNERS #14

Workflow file for this run

name: check
on: push
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@v4
with:
python-version: "3.x"
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/