Skip to content

Commit e1e53aa

Browse files
committed
Remove ubuntu from GitHub workflow
1 parent 06c0813 commit e1e53aa

1 file changed

Lines changed: 2 additions & 11 deletions

File tree

.github/workflows/build.yml

Lines changed: 2 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,8 @@ env:
1010

1111
jobs:
1212
test:
13-
runs-on: ${{ matrix.os }}
13+
runs-on: windows-latest
1414
name: Build & Test
15-
strategy:
16-
fail-fast: false
17-
matrix:
18-
os: [ ubuntu-latest, windows-latest ]
1915
steps:
2016
- uses: actions/checkout@v4
2117
- name: Setup .NET Core
@@ -29,10 +25,5 @@ jobs:
2925
- name: Install Playwright browsers & dependencies
3026
run: pwsh test/OrchardCoreContrib.Testing.UI.Tests/bin/Release/net8.0/playwright.ps1 install --with-deps
3127
- name: Test
32-
run: |
33-
if [ "${{ matrix.os }}" == "ubuntu-latest" ]; then
34-
xvfb-run dotnet test test/OrchardCoreContrib.Testing.UI.Tests -c Release --no-restore --verbosity normal
35-
else
28+
run:
3629
dotnet test test/OrchardCoreContrib.Testing.UI.Tests -c Release --no-restore --verbosity normal
37-
fi
38-
shell: bash

0 commit comments

Comments
 (0)