Skip to content

assets: update social image with opencode/openclaw support, optimized… #13

assets: update social image with opencode/openclaw support, optimized…

assets: update social image with opencode/openclaw support, optimized… #13

Workflow file for this run

name: CI
on: [push, pull_request]
env:
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: 'true'
jobs:
lint:
runs-on: windows-2022
steps:
- uses: actions/checkout@v4
- uses: astral-sh/setup-uv@v3
- run: uv python install 3.13
- run: uv sync --all-extras
- name: Lint
run: uv run ruff check
- name: Type check
run: uv run mypy src
test:
runs-on: windows-2022
steps:
- uses: actions/checkout@v4
- uses: astral-sh/setup-uv@v3
- run: uv python install 3.13
- run: uv sync --all-extras
- name: Test
run: uv run pytest