We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 94314ad commit 476a818Copy full SHA for 476a818
1 file changed
.github/workflows/build-and-release.yml
@@ -53,7 +53,8 @@ jobs:
53
if [[ "$RUNNER_OS" == "Windows" ]]; then
54
FILTER='/*/*/*/*[Category!=OpenBugs]'
55
else
56
- FILTER='/*/*/*/*[Category!=OpenBugs && Category!=WindowsOnly]'
+ # Combine filters with separate brackets (TUnit syntax for AND)
57
+ FILTER='/*/*/*/*[Category!=OpenBugs][Category!=WindowsOnly]'
58
fi
59
dotnet run --project test/NumSharp.UnitTest/NumSharp.UnitTest.csproj \
60
--configuration Release --no-build --framework net10.0 \
0 commit comments