Skip to content

优化桌面壳状态 Dock 与静默登录风险提示 #7

优化桌面壳状态 Dock 与静默登录风险提示

优化桌面壳状态 Dock 与静默登录风险提示 #7

Workflow file for this run

name: CI
on:
pull_request:
branches:
- main
push:
branches:
- main
permissions:
contents: read
jobs:
build:
name: build-and-test
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 10.0.x
- name: Restore
run: dotnet restore CodexCliPlus.sln
- name: Build
run: dotnet build CodexCliPlus.sln --configuration Release --no-restore
- name: Test
run: dotnet test tests/CodexCliPlus.Tests/CodexCliPlus.Tests.csproj --configuration Release --no-build --verbosity normal