Skip to content

Commit b51d9b3

Browse files
committed
run test coverage only on macos
1 parent cc0722c commit b51d9b3

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

.github/workflows/main.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ jobs:
2727
--with-secure-transport
2828
CFLAGS="-arch x86_64 -arch arm64"
2929
name: macos
30-
test: brew install lcov && COVERAGE=true
3130
- os: windows-latest
3231
arch: x86_64
3332
configure:
@@ -264,10 +263,14 @@ jobs:
264263
adb shell "sh /data/local/tmp/commands.sh"
265264
266265
- name: test sqlite-sync
267-
if: matrix.name == 'linux' || matrix.name == 'macos' || matrix.name == 'windows'
268-
run: ${{ matrix.test }} make test
266+
if: matrix.name == 'linux' || matrix.name == 'windows'
267+
run: make test
269268
shell: bash
270269

270+
- name: test sqlite-sync + coverage
271+
if: matrix.name == 'macos'
272+
run: brew install lcov && make test COVERAGE=true
273+
271274
- uses: actions/[email protected]
272275
if: always()
273276
with:

0 commit comments

Comments
 (0)