Skip to content

Complete stop and add vehicle #3

Complete stop and add vehicle

Complete stop and add vehicle #3

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 .