We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent db4f528 commit d6b84a4Copy full SHA for d6b84a4
1 file changed
.github/workflows/CI.yml
@@ -61,6 +61,11 @@ jobs:
61
# Restore is required even with --no-build so the test runner can locate packages
62
run: dotnet restore VastAI.NET.slnx
63
64
+ - name: Restore xUnit v3 test app permissions
65
+ # GitHub artifact downloads do not preserve executable bits. xUnit v3 test projects are
66
+ # launched as test executables by the VSTest adapter, so Linux runners need this restored.
67
+ run: find tests -path "*/bin/Debug/net10.0/*" -type f -name "*.Tests" -exec chmod +x {} \;
68
+
69
- name: Run tests
70
run: dotnet test VastAI.NET.slnx --no-build --verbosity normal --logger trx --results-directory ./test-results
71
0 commit comments