Skip to content

Medium Refactorings

Medium Refactorings #1

Workflow file for this run

name: CI
on: pull_request
jobs:
lint:
runs-on: ubuntu-latest
name: Lint Python API SDK
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.12
- name: Install Poetry
uses: snok/install-poetry@v1
- name: Navigate to the SDK directory
run: cd api/python
- name: Install dependencies
run: poetry install
- name: Check formatting
run: poetry run black --check airthings_sdk