remove deprecated examples and skills #90
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: finegrain CI | |
| on: | |
| push: | |
| paths: | |
| - finegrain/** | |
| - .github/workflows/finegrain-ci.yml | |
| jobs: | |
| lint_and_typecheck: | |
| runs-on: ubuntu-latest | |
| defaults: | |
| run: | |
| working-directory: ./finegrain | |
| steps: | |
| - name: checkout | |
| uses: actions/checkout@v4 | |
| - name: install uv | |
| uses: astral-sh/setup-uv@v6 | |
| with: | |
| enable-cache: true | |
| cache-suffix: "finegrain-python" | |
| cache-dependency-glob: "**/finegrain/uv.lock" | |
| - name: uv sync | |
| run: uv sync --frozen --all-extras --dev | |
| - name: format | |
| run: uv run ruff format | |
| - name: lint | |
| run: uv run ruff check | |
| - name: typecheck | |
| run: uv run pyright |