Skip to content

docs: 更新README中游戏集成描述,使表述更清晰 #19

docs: 更新README中游戏集成描述,使表述更清晰

docs: 更新README中游戏集成描述,使表述更清晰 #19

Workflow file for this run

name: ci
on:
push:
branches: [master]
pull_request:
permissions:
contents: read
jobs:
build-and-test:
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v6
with:
fetch-depth: 0
submodules: recursive
- name: Setup .NET
uses: actions/setup-dotnet@v5
with:
dotnet-version: 10.0.x
- name: Restore
run: dotnet restore KeyAsio.Net.slnx
- name: Build
run: dotnet build KeyAsio.Net.slnx --configuration Release --no-restore
- name: Test application behavior
run: dotnet test tests/KeyAsio.UnitTests/KeyAsio.UnitTests.csproj --configuration Release --no-build
- name: Test audio primitives
run: dotnet test tests/AudioTests/AudioTests.csproj --configuration Release --no-build