feat(skills): add architecting-act skill for LangGraph architecture d… #40
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Ruff Lint & Format | |
| on: [push, pull_request] | |
| jobs: | |
| ruff: | |
| runs-on: ubuntu-latest | |
| defaults: | |
| run: | |
| working-directory: act_operator | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: Set up Python | |
| uses: astral-sh/setup-uv@v7 | |
| with: | |
| python-version: "3.12" | |
| enable-cache: true | |
| cache-suffix: "ruff" | |
| - name: Install dependencies (dev) | |
| run: uv sync --dev | |
| - name: Ruff Lint with fix | |
| run: uv run ruff check . --fix | |
| - name: Ruff Format | |
| run: uv run ruff format . | |
| - name: Ruff Format Check | |
| run: uv run ruff format . --check |