-
Notifications
You must be signed in to change notification settings - Fork 0
47 lines (37 loc) · 965 Bytes
/
pr.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
name: Build and pack
on:
pull_request:
branches:
- trunk
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- uses: ilammy/msvc-dev-cmd@v1
with:
# must match build.fs
toolset: 14.35
- name: Setup .NET
uses: actions/setup-dotnet@v3
- name: Build and pack
run: ./build pack --configuration Release --platform x64-windows --platform x86-windows
- uses: actions/upload-artifact@v3
name: Upload package and logs
if: always()
with:
name: build-log
path: |
./dotnetbuild.binlog
dist
- name: Run tests (dotnet)
run: ./build dotnet:test --configuration Release --results data
- name: Report tests (dotnet)
uses: dorny/test-reporter@v1
if: ${{ always() }}
with:
name: test
path: data/*.trx
reporter: dotnet-trx