We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a6a9fe0 commit 2ae0bffCopy full SHA for 2ae0bff
.github/workflows/dotnet.yml
@@ -15,21 +15,22 @@ on:
15
16
jobs:
17
build:
18
+
19
runs-on: ubuntu-latest
20
21
steps:
- - uses: actions/checkout@v3
22
- - name: Setup .NET
23
- uses: actions/setup-dotnet@v3
24
- with:
25
- dotnet-version: |
26
- 6.0.x
27
- 7.0.x
28
- 8.0.x
29
- 9.0.x
30
- - name: Restore dependencies
31
- run: dotnet restore
32
- - name: Build
33
- run: dotnet build --no-restore
34
- - name: Test
35
- run: dotnet test --no-build --verbosity normal
+ - uses: actions/checkout@v3
+ - name: Setup .NET
+ uses: actions/setup-dotnet@v3
+ with:
+ dotnet-version: |
+ 6.0.x
+ 7.0.x
+ 8.0.x
+ 9.0.x
+ - name: Restore dependencies
+ run: dotnet restore
+ - name: Build
+ run: dotnet build --no-restore
+ - name: Test
36
+ run: dotnet test --no-build --verbosity normal
0 commit comments