-
-
Notifications
You must be signed in to change notification settings - Fork 1
41 lines (38 loc) · 1015 Bytes
/
Tests.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
name: Tests
on:
workflow_run:
workflows: ["NewBuild"]
types:
- completed
workflow_dispatch:
jobs:
RunTests:
strategy:
fail-fast: false
matrix:
# Ubuntu fails tests in test-runner code right now, dunno why - it's not my code
# os: [ubuntu-latest, windows-latest]
os: [windows-latest]
csproj-file:
- 'Tests/Corlib.Tests/Corlib.Tests.csproj'
configuration: ['Debug','Release']
architecture: ['AnyCPU','x86','x64']
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-dotnet@v4
with:
dotnet-version: |
8.x
3.1
# 1.0
# 1.1
# 2.0
# 2.1
# 2.2
# 3.0
# 5.x
# 6.x
# 7.x
- name: Test
run: dotnet test "${{ matrix.csproj-file }}" --configuration ${{ matrix.configuration }} --arch ${{ matrix.architecture }} --verbosity normal