We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c450494 commit 9bf321fCopy full SHA for 9bf321f
2 files changed
.github/workflows/unit-tests.yml
@@ -0,0 +1,23 @@
1
+name: unit tests
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - main
7
8
+jobs:
9
+ perform-unit-tests:
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ # Checkout the code
13
+ - uses: actions/checkout@v5
14
15
+ # Install .NET SDK
16
+ - name: Setup .NET SDK
17
+ uses: actions/setup-dotnet@v5
18
+ with:
19
+ dotnet-version: 10.0.x
20
21
+ # Perform unit tests
22
+ - name: Perform unit tests
23
+ run: dotnet test --project ./UserSecretsExtension.Test --output detailed
global.json
@@ -3,5 +3,8 @@
"rollForward": "latestMinor",
"version": "10.0.0",
"allowPrerelease": false
+ },
+ "test": {
+ "runner": "Microsoft.Testing.Platform"
}
0 commit comments