We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6799711 commit f46e260Copy full SHA for f46e260
1 file changed
.github/workflows/pull-request.yml
@@ -11,15 +11,15 @@ jobs:
11
12
steps:
13
- uses: actions/checkout@v2
14
- - name: Setup .NET Core
+ - name: Setup .NET
15
uses: actions/setup-dotnet@v1
16
with:
17
- dotnet-version: 3.1.301
+ dotnet-version: 5.0.202
18
- name: Install tools
19
run: dotnet tool restore
20
- - name: Install dependencies
21
- run: dotnet restore
22
- - name: Build
23
- run: dotnet build --configuration Release --no-restore
24
- - name: Test
25
- run: dotnet test --no-restore --verbosity normal
+ - name: Build Test and Docs using FAKE
+ run: dotnet fake build
+
0 commit comments