-
Notifications
You must be signed in to change notification settings - Fork 0
50 lines (41 loc) · 1.33 KB
/
pr.yml
File metadata and controls
50 lines (41 loc) · 1.33 KB
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
name: Build and Test
on:
pull_request:
branches:
- main
jobs:
build:
strategy:
matrix:
os: [windows-latest, ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0 # Git Versioning requires a non-shallow clone
- name: Setup .NET
uses: actions/setup-dotnet@v3
- name: Restore
run: dotnet restore -bl:logs/restore.binlog
- name: Build
run: dotnet build --configuration Release --no-restore -bl:logs/build.binlog
- name: Test
run: dotnet test --configuration Release --no-build --report-xunit-trx --results-directory TestResults
- name: Upload test results
uses: actions/upload-artifact@v4
with:
name: test-results-${{ matrix.os }}
path: ./TestResults
if: ${{ always() }} # Always run this step even on failure
- name: Upload logs
uses: actions/upload-artifact@v4
with:
name: logs-${{ matrix.os }}
path: ./logs
if: ${{ always() }} # Always run this step even on failure
- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
name: artifacts-${{ matrix.os }}
path: ./artifacts
if: ${{ always() }} # Always run this step even on failure