Skip to content

Commit c2a45d1

Browse files
authored
Fix typo in test.yml (#167)
* Update test.yml * Don't use xvfb-run on windows
1 parent 3fc6c63 commit c2a45d1

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

.github/workflows/test.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -57,9 +57,9 @@ jobs:
5757
- name: Convert coverage to lcov
5858
run: dart run coverage:format_coverage -i ./coverage -o ./coverage/lcov.info --lcov --report-on lib/
5959
- uses: coverallsapp/github-action@v2
60-
with:
61-
flag-name: linux
62-
parallel: true
60+
with:
61+
flag-name: linux
62+
parallel: true
6363
macos-14:
6464
name: webcrypto on macOS 14 desktop / Chrome
6565
runs-on: macos-14 # Test with xcode 15
@@ -153,14 +153,14 @@ jobs:
153153
- run: flutter pub run test -p vm,chrome,firefox
154154
# Test with coverage collection as a separate step.
155155
# This will run in debug mode, so we test both with and without coverage.
156-
- run: xvfb-run flutter pub run test -p vm,chrome,firefox --coverage ./coverage
156+
- run: flutter pub run test -p vm,chrome,firefox --coverage ./coverage
157157
# Report collected coverage
158158
- name: Convert coverage to lcov
159159
run: dart run coverage:format_coverage -i ./coverage -o ./coverage/lcov.info --lcov --report-on lib/
160160
- uses: coverallsapp/github-action@v2
161-
with:
162-
flag-name: windows
163-
parallel: true
161+
with:
162+
flag-name: windows
163+
parallel: true
164164
ios:
165165
name: webcrypto on iOS emulator (iPhone)
166166
runs-on: macos-14

0 commit comments

Comments
 (0)