xiangqi_tui 0.1.0

Chinese chess (Xiangqi) TUI client with UCI/UCCI engine and opening book support
1
2
3
4
5
6
7
8
9
10
11
# 本地质量门禁:测试 + 严格 Clippy(warnings 即失败)
$ErrorActionPreference = "Stop"
Set-Location (Split-Path $PSScriptRoot -Parent)

cargo test
if ($LASTEXITCODE -ne 0) { exit $LASTEXITCODE }

cargo lint-strict
if ($LASTEXITCODE -ne 0) { exit $LASTEXITCODE }

Write-Host "check.ps1: OK"