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 b06e08b commit 2833c15Copy full SHA for 2833c15
.github/workflows/test-examples.yaml
@@ -23,10 +23,16 @@ jobs:
23
- name: Check out our repo
24
uses: actions/checkout@v2
25
26
- - name: Setup .NET 8.0
27
- uses: actions/setup-dotnet@v1
+ # We build examples against .NET 6.0, but use
+ # 8.0 for the tools themselves. (The closer we
28
+ # are to the target language version we're standardising,
29
+ # the better.)
30
+ - name: Setup .NET 6.0 and 8.0
31
+ uses: actions/setup-dotnet@v3
32
with:
- dotnet-version: 8.0.x
33
+ dotnet-version: |
34
+ 6.0.x
35
+ 8.0.x
36
37
- name: Extract and validate tests
38
run: |
0 commit comments