Skip to content

Commit 46a3296

Browse files
author
MPCoreDeveloper
committed
check .net runtime for runners
1 parent b727f31 commit 46a3296

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

.github/workflows/ci.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -32,21 +32,21 @@ jobs:
3232
fetch-depth: 0
3333

3434
- name: Setup .NET 10
35-
uses: actions/setup-dotNET@v4
35+
uses: actions/setup-dotnet@v4
3636
with:
3737
dotnet-version: '10.0.x'
3838

3939
- name: Display .NET info
40-
run: dotNET --info
40+
run: dotnet --info
4141

4242
- name: Restore dependencies
43-
run: dotNET restore SharpCoreDB.CI.slnf
43+
run: dotnet restore SharpCoreDB.CI.slnf
4444

4545
- name: Build
46-
run: dotNET build SharpCoreDB.CI.slnf --configuration Release --no-restore /p:ContinuousIntegrationBuild=true
46+
run: dotnet build SharpCoreDB.CI.slnf --configuration Release --no-restore /p:ContinuousIntegrationBuild=true
4747

4848
- name: Test
49-
run: dotNET test SharpCoreDB.CI.slnf --configuration Release --no-build --verbosity normal --logger trx --collect:"XPlat Code Coverage" --filter "Category!=Performance&Category!=Debug&Category!=Manual"
49+
run: dotnet test SharpCoreDB.CI.slnf --configuration Release --no-build --verbosity normal --logger trx --collect:"XPlat Code Coverage" --filter "Category!=Performance&Category!=Debug&Category!=Manual"
5050
timeout-minutes: 20
5151
env:
5252
CI: "true"
@@ -83,12 +83,12 @@ jobs:
8383
fetch-depth: 0
8484

8585
- name: Setup .NET 10
86-
uses: actions/setup-dotNET@v4
86+
uses: actions/setup-dotnet@v4
8787
with:
8888
dotnet-version: '10.0.x'
8989

9090
- name: Pack NuGet packages
91-
run: dotNET pack SharpCoreDB.CI.slnf --configuration Release --output ./artifacts /p:ContinuousIntegrationBuild=true
91+
run: dotnet pack SharpCoreDB.CI.slnf --configuration Release --output ./artifacts /p:ContinuousIntegrationBuild=true
9292

9393
- name: Upload NuGet artifacts
9494
uses: actions/upload-artifact@v4

0 commit comments

Comments
 (0)