-
Notifications
You must be signed in to change notification settings - Fork 7
45 lines (34 loc) · 977 Bytes
/
dotnet-desktop.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
name: Build and Test
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup .NET
uses: actions/setup-dotnet@v4
- name: Restore
run: dotnet restore -bl:logs/restore.binlog
- name: Build
run: dotnet build --configuration Debug --no-restore -bl:logs/build.binlog
- name: Test
run: dotnet test --configuration Debug --no-build --logger trx --results-directory TestResults
- name: Upload test results
uses: actions/upload-artifact@v4
with:
name: test-results
path: ./TestResults
if: ${{ always() }} # Always run this step even on failure
- name: Upload logs
uses: actions/upload-artifact@v4
with:
name: logs
path: ./logs
if: ${{ always() }} # Always run this step even on failure