Skip to content

Commit 476a818

Browse files
committed
ci: try separate bracket blocks for filter AND logic
1 parent 94314ad commit 476a818

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

.github/workflows/build-and-release.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,8 @@ jobs:
5353
if [[ "$RUNNER_OS" == "Windows" ]]; then
5454
FILTER='/*/*/*/*[Category!=OpenBugs]'
5555
else
56-
FILTER='/*/*/*/*[Category!=OpenBugs && Category!=WindowsOnly]'
56+
# Combine filters with separate brackets (TUnit syntax for AND)
57+
FILTER='/*/*/*/*[Category!=OpenBugs][Category!=WindowsOnly]'
5758
fi
5859
dotnet run --project test/NumSharp.UnitTest/NumSharp.UnitTest.csproj \
5960
--configuration Release --no-build --framework net10.0 \

0 commit comments

Comments
 (0)