We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bb72f7d commit 86d6f24Copy full SHA for 86d6f24
2 files changed
.github/workflows/ci.yml
@@ -19,6 +19,10 @@ jobs:
19
uses: actions/checkout@v2
20
with:
21
fetch-depth: 0
22
+ - name: Use .NET 6
23
+ uses: actions/setup-dotnet@v1
24
+ with:
25
+ dotnet-version: '6.0.x'
26
- name: Build and Test
27
run: ./Build.ps1
28
shell: pwsh
.github/workflows/release.yml
@@ -7,13 +7,19 @@ on:
7
jobs:
8
build:
9
strategy:
10
+ matrix:
11
+ os: [windows-latest]
12
fail-fast: false
13
runs-on: windows-latest
14
steps:
15
- name: Checkout
16
17
18
0 commit comments