We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cc0722c commit b51d9b3Copy full SHA for b51d9b3
.github/workflows/main.yml
@@ -27,7 +27,6 @@ jobs:
27
--with-secure-transport
28
CFLAGS="-arch x86_64 -arch arm64"
29
name: macos
30
- test: brew install lcov && COVERAGE=true
31
- os: windows-latest
32
arch: x86_64
33
configure:
@@ -264,10 +263,14 @@ jobs:
264
263
adb shell "sh /data/local/tmp/commands.sh"
265
266
- name: test sqlite-sync
267
- if: matrix.name == 'linux' || matrix.name == 'macos' || matrix.name == 'windows'
268
- run: ${{ matrix.test }} make test
+ if: matrix.name == 'linux' || matrix.name == 'windows'
+ run: make test
269
shell: bash
270
+ - name: test sqlite-sync + coverage
271
+ if: matrix.name == 'macos'
272
+ run: brew install lcov && make test COVERAGE=true
273
+
274
- uses: actions/[email protected]
275
if: always()
276
with:
0 commit comments