Skip to content

Commit a955ec6

Browse files
committed
ci: enforce coverage on Linux PR builds
1 parent ebecc2b commit a955ec6

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

.github/workflows/ci.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,11 @@ jobs:
107107
run: |
108108
just build
109109
just lint
110-
just test
110+
if [ "${{ github.event_name }}" = "pull_request" ]; then
111+
just test --coverage
112+
else
113+
just test
114+
fi
111115
112116
- name: Ensure libs importable
113117
env:

0 commit comments

Comments
 (0)