Skip to content

fix:Adding Instructions for ECS Usage (#14) #68

fix:Adding Instructions for ECS Usage (#14)

fix:Adding Instructions for ECS Usage (#14) #68

Workflow file for this run

name: Linting and Formatting
on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_dispatch:
concurrency:
group: purple-mcp-ruff-${{ github.head_ref || github.ref }}
cancel-in-progress: ${{ github.event_name == 'pull_request' }}
jobs:
ruff:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: Setup Python and uv
uses: ./.github/actions/setup-python-uv
- name: Run ruff check
run: |
uv run --group dev ruff check
- name: Run ruff format check
run: |
uv run --group dev ruff format --check