Skip to content

updating devcontainer with use ruff formatter in VSCOde #302

updating devcontainer with use ruff formatter in VSCOde

updating devcontainer with use ruff formatter in VSCOde #302

Workflow file for this run

name: Lint
on: [push, pull_request]
jobs:
lint:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
linter:
- lint
- check
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.10"
- name: Install dependencies
run: |
python -m pip install -U tox-uv
- run: tox -e ${{ matrix.linter }}