Skip to content

Commit 0b66df6

Browse files
committed
enable linux again
1 parent 4f32b49 commit 0b66df6

1 file changed

Lines changed: 16 additions & 12 deletions

File tree

.github/workflows/test.yml

Lines changed: 16 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -11,19 +11,23 @@ on:
1111
jobs:
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

0 commit comments

Comments
 (0)