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 1faeb27 commit 308ea61Copy full SHA for 308ea61
1 file changed
.github/workflows/build.yml
@@ -5,15 +5,18 @@ on:
5
push:
6
paths:
7
- 'Dockerfile'
8
+ - './api/MyApp.sln'
9
10
jobs:
11
build:
12
runs-on: ubuntu-20.04
13
steps:
- - uses: actions/checkout@v2
14
- - uses: actions/setup-dotnet@v1
+ - name: checkout
15
+ uses: actions/checkout@v2.0.0
16
+ - name: Setup dotnet
17
+ uses: actions/setup-dotnet@v1
18
with:
19
dotnet-version: '6.0'
20
include-prerelease: true
21
- run: dotnet build ./api
- - run: dotnet test ./api/MyApp.Tests
22
+ - run: dotnet test ./api/MyApp.Tests
0 commit comments