-
Notifications
You must be signed in to change notification settings - Fork 50
85 lines (68 loc) · 2.58 KB
/
test.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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
name: Test
on:
push:
branches:
- master
paths:
- 'src/**'
- 'test/**'
- '.github/workflows/**'
env:
SOLUTION: Rougamo.sln
jobs:
windows:
name: Windows
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup .NET
uses: actions/[email protected]
with:
dotnet-version: |
3.1.x
5.0.x
6.0.x
7.0.x
- name: Restore NuGets
run: dotnet restore ${{ env.SOLUTION }}
- name: Build Solution in DEBUG
run: dotnet build --configuration Debug --no-restore ${{ env.SOLUTION }}
- name: Test in DEBUG
run: dotnet test --configuration Debug --no-build ${{ env.SOLUTION }}
- name: Build Solution in RELEASE
run: dotnet build --configuration Release --no-restore ${{ env.SOLUTION }}
- name: Test in RELEASE
run: dotnet test --configuration Release --no-build ${{ env.SOLUTION }}
linux:
name: Linux
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup .NET
uses: actions/[email protected]
with:
dotnet-version: |
3.1.x
5.0.x
6.0.x
7.0.x
- name: Restore NuGets
run: dotnet restore ${{ env.SOLUTION }}
- name: Build Solution in DEBUG
run: dotnet build --configuration Debug --no-restore ${{ env.SOLUTION }}
- name: Test in DEBUG with netcoreapp3.1
run: dotnet test --configuration Debug --no-build --framework netcoreapp3.1 ${{ env.SOLUTION }}
- name: Test in DEBUG with net6.0
run: dotnet test --configuration Debug --no-build --framework net6.0 ${{ env.SOLUTION }}
- name: Test in DEBUG with net7.0
run: dotnet test --configuration Debug --no-build --framework net7.0 ${{ env.SOLUTION }}
- name: Build Solution in RELEASE
run: dotnet build --configuration Release --no-restore ${{ env.SOLUTION }}
- name: Test in RELEASE with netcoreapp3.1
run: dotnet test --configuration Release --no-build --framework netcoreapp3.1 ${{ env.SOLUTION }}
- name: Test in RELEASE with net6.0
run: dotnet test --configuration Release --no-build --framework net6.0 ${{ env.SOLUTION }}
- name: Test in RELEASE with net7.0
run: dotnet test --configuration Release --no-build --framework net7.0 ${{ env.SOLUTION }}