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 a249232 commit a2d7938Copy full SHA for a2d7938
.github/workflows/DotNET-build.yml
@@ -28,9 +28,22 @@ on:
28
29
jobs:
30
ubuntu-latest:
31
- name: ubuntu-20.04
32
- runs-on: ubuntu-20.04
33
- steps:
+ name: ubuntu-latest
+ runs-on: ubuntu-latest
+ strategy:
34
+ matrix:
35
+ dotnet-version: [ '6.0.x', '7.0.x', '8.0.x']
36
+
37
+ steps:
38
+ - uses: actions/checkout@v4
39
+ - name: Setup dotnet ${{ matrix.dotnet-version }}
40
+ uses: actions/setup-dotnet@v4
41
+ with:
42
+ dotnet-version: ${{ matrix.dotnet-version }}
43
+ # You can test your matrix by printing the current dotnet version
44
+ - name: Display dotnet version
45
+ run: dotnet --version
46
47
- uses: actions/setup-java@v4
48
with:
49
distribution: 'temurin'
0 commit comments