File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1111jobs :
1212 build-test :
1313 name : Build & Test
14- runs-on : windows-latest
15-
14+ strategy :
15+ fail-fast : false
16+ matrix :
17+ os : [windows-latest, ubuntu-latest]
18+ runs-on : ${{ matrix.os }}
19+
1620 steps :
17- - uses : actions/checkout@v6
18- with :
19- fetch-depth : 0
20- submodules : recursive
21- - uses : actions/setup-dotnet@v5
22- with :
23- dotnet-version : 10.0.x
24-
25- - name : Build in Release Mode
26- run : dotnet test --configuration Release --report-github
21+ - name : Checkout
22+ uses : actions/checkout@v6
23+ with :
24+ fetch-depth : 0
25+ submodules : recursive
26+ - uses : actions/setup-dotnet@v5
27+ with :
28+ dotnet-version : 10.0.x
29+ - name : Build & Test in Release Mode
30+ run : dotnet test --configuration Release --report-github
2731
2832 test-moddingtoolbase :
2933 name : Test ModdingToolBase
You can’t perform that action at this time.
0 commit comments