Skip to content

CUA like agent with tool use and hint support. #978

CUA like agent with tool use and hint support.

CUA like agent with tool use and hint support. #978

Workflow file for this run

name: Code Format
on:
push:
branches:
- main
pull_request:
jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
shell: bash -l {0}
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v4
with:
enable-cache: true
- name: Set up Python
run: uv python install 3.12
- name: Install dependencies
run: uv sync --frozen
- name: Code Formatting
run: uv run black src/ --check --diff