Skip to content

[!F] UGC要求Air必须紧跟在其依附的音符的后面,之前的实现没有正确实现这一点,现在进行了修复。 #114

[!F] UGC要求Air必须紧跟在其依附的音符的后面,之前的实现没有正确实现这一点,现在进行了修复。

[!F] UGC要求Air必须紧跟在其依附的音符的后面,之前的实现没有正确实现这一点,现在进行了修复。 #114

Workflow file for this run

name: .NET Tests
on:
push:
branches: ["**"]
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Setup .NET
uses: actions/setup-dotnet@v5
with:
dotnet-version: 10.0.x
- name: Restore
run: dotnet restore MuConvert.slnx
- name: Build
run: dotnet build MuConvert.slnx --configuration Release --no-restore
- name: Test
run: dotnet test tests/MuConvert.Tests.csproj --configuration Release --no-build --verbosity normal