Skip to content

feat: 更新ui

feat: 更新ui #77

Workflow file for this run

on:
push:
paths:
- "**.cs"
pull_request:
paths:
- "**.cs"
workflow_dispatch:
jobs:
test:
runs-on: windows-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Install .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 6.0.x
- name: Run tests
run: |
dotnet test ./src/Serein.Tests --logger "GitHubActions;summary.includePassedTests=true;summary.includeSkippedTests=true"