Skip to content

Change code workspace #6

Change code workspace

Change code workspace #6

Workflow file for this run

name: python lint
on: [push]
jobs:
sdk-python-lint:
runs-on: ubuntu-latest
steps:
- name: git clone
uses: actions/checkout@v3
- name: set up Python
uses: actions/setup-python@v4
with:
python-version: "3.12"
- name: install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: lint with ruff
run: ruff check --output-format=github .