Skip to content

add new flag to skip hints with the current goal in the hint source t… #921

add new flag to skip hints with the current goal in the hint source t…

add new flag to skip hints with the current goal in the hint source t… #921

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.11
- name: Install dependencies
run: uv sync --frozen --extra dev
- name: List packages
run: uv pip list
- name: Code Formatting
run: uv run black src/ --check --diff