We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5390206 commit db66978Copy full SHA for db66978
2 files changed
.github/workflows/publish-Sharpy.yml
@@ -4,6 +4,20 @@ on:
4
branches:
5
- master # Default release branch
6
jobs:
7
+ build:
8
+ name: Test project
9
+ runs-on: ubuntu-latest
10
+
11
+ steps:
12
+ - uses: actions/checkout@v2
13
+ - name: Setup .NET Core
14
+ uses: actions/setup-dotnet@v1
15
+ with:
16
+ dotnet-version: 3.1.100
17
+ - name: Build
18
+ run: dotnet build --configuration Release
19
+ - name: Test
20
+ run: dotnet test --no-build --configuration Release
21
publish:
22
name: build, pack & publish
23
runs-on: ubuntu-latest
.github/workflows/test.yml
0 commit comments