Skip to content
This repository was archived by the owner on May 25, 2023. It is now read-only.

Commit 86d6f24

Browse files
committed
Using .NET 6
1 parent bb72f7d commit 86d6f24

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,10 @@ jobs:
1919
uses: actions/checkout@v2
2020
with:
2121
fetch-depth: 0
22+
- name: Use .NET 6
23+
uses: actions/setup-dotnet@v1
24+
with:
25+
dotnet-version: '6.0.x'
2226
- name: Build and Test
2327
run: ./Build.ps1
2428
shell: pwsh

.github/workflows/release.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,19 @@ on:
77
jobs:
88
build:
99
strategy:
10+
matrix:
11+
os: [windows-latest]
1012
fail-fast: false
1113
runs-on: windows-latest
1214
steps:
1315
- name: Checkout
1416
uses: actions/checkout@v2
1517
with:
1618
fetch-depth: 0
19+
- name: Use .NET 6
20+
uses: actions/setup-dotnet@v1
21+
with:
22+
dotnet-version: '6.0.x'
1723
- name: Build and Test
1824
run: ./Build.ps1
1925
shell: pwsh

0 commit comments

Comments
 (0)