Skip to content

Commit dda995b

Browse files
committed
Update pipelines
1 parent c521a4c commit dda995b

File tree

2 files changed

+5
-14
lines changed

2 files changed

+5
-14
lines changed

.github/workflows/linux.yml

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,24 +5,19 @@ on:
55
branches: [ main ]
66

77
jobs:
8-
build:
8+
ubuntu-latest:
99
runs-on: ubuntu-latest
1010
steps:
11-
1211
- name: Checkout
1312
uses: actions/checkout@v4
14-
1513
- name: Setup
1614
uses: actions/setup-dotnet@v4
1715
with:
18-
dotnet-version: 8.0.x
19-
16+
dotnet-version: 8
2017
- name: Build
2118
run: dotnet build -c Release
22-
2319
- name: Test
24-
run: dotnet test --no-build --verbosity normal --collect:"XPlat Code Coverage" -c Release
25-
20+
run: dotnet test --no-build --verbosity normal --collect:"XPlat Code Coverage" -c Release
2621
- name: Codecov
2722
uses: codecov/codecov-action@v4
2823
with:

.github/workflows/windows.yml

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,20 +5,16 @@ on:
55
branches: [ main ]
66

77
jobs:
8-
build:
8+
windows-latest:
99
runs-on: windows-latest
1010
steps:
11-
1211
- name: Checkout
1312
uses: actions/checkout@v4
14-
1513
- name: Setup
1614
uses: actions/setup-dotnet@v4
1715
with:
18-
dotnet-version: 8.0.x
19-
16+
dotnet-version: 8
2017
- name: Build
2118
run: dotnet build -c Release
22-
2319
- name: Test
2420
run: dotnet test --no-build --verbosity normal -c Release

0 commit comments

Comments
 (0)