-
Notifications
You must be signed in to change notification settings - Fork 7
67 lines (52 loc) · 1.47 KB
/
build.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
name: Build
on: [push]
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ macos-latest, ubuntu-latest, windows-latest ]
steps:
- uses: actions/checkout@v3
- name: Setup .NET Core SDK
uses: actions/setup-dotnet@v3
with:
dotnet-version: '7.0.x'
- name: Build
working-directory: ${{github.workspace}}
run: dotnet build
- name: Test
working-directory: ${{github.workspace}}
run: dotnet test -l "console;verbosity=normal" --no-build --blame-hang
validate:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup .NET Core SDK
uses: actions/setup-dotnet@v3
with:
dotnet-version: '7.0.x'
- name: Run validation
working-directory: ${{github.workspace}}
run: dotnet run -c Release --project SeeSharp.Validation
pack:
runs-on: ubuntu-latest
needs: [test, validate]
steps:
- uses: actions/checkout@v3
- name: Setup .NET Core SDK
uses: actions/setup-dotnet@v3
with:
dotnet-version: '7.0.x'
- name: Pack
run: dotnet pack -c Release
- name: Upload .nupkg
uses: actions/upload-artifact@v3
with:
path: ${{github.workspace}}/SeeSharp/bin/**/*.nupkg
- name: Publish on version change
uses: alirezanet/[email protected]
with:
PROJECT_FILE_PATH: SeeSharp/SeeSharp.csproj
NUGET_KEY: ${{secrets.NUGET_API_KEY}}
TAG_COMMIT: false