We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9fe507e commit 884b5dfCopy full SHA for 884b5df
1 file changed
.github/workflows/dotnet.yml
@@ -5,6 +5,7 @@ on:
5
branches: [ dev ]
6
pull_request:
7
8
+ workflow_dispatch:
9
10
jobs:
11
build:
@@ -19,11 +20,12 @@ jobs:
19
20
dotnet-version: |
21
8.0.x
22
9.0.x
23
+ 10.0.x
24
- name: Restore dependencies
25
run: dotnet restore
26
- name: Build
27
run: dotnet build --no-restore
28
- name: Test
- run: dotnet test --no-build --verbosity normal
29
+ run: dotnet test --configuration Release --no-build --collect:"XPlat Code Coverage"
30
- name: Codecov
- uses: codecov/codecov-action@v3.1.1
31
+ uses: codecov/codecov-action@v4
0 commit comments