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 76b9b8c commit 6186620Copy full SHA for 6186620
.github/workflows/elixir.yml
@@ -72,5 +72,10 @@ jobs:
72
run: mix dialyzer --format github
73
if: ${{ matrix.lint }}
74
75
+ - name: Run tests
76
+ run: mix test --cover
77
+ if: ${{ matrix.lint }}
78
+
79
- name: Run tests
80
run: mix test
81
+ if: ${{ !matrix.lint }}
mix.exs
@@ -50,6 +50,7 @@ defmodule TypedStructor.MixProject do
50
}
51
],
52
test_coverage: [
53
+ summary: [threshold: 100],
54
ignore_modules: [
55
TypedStructor.Definition,
56
TypedStructor.GuideCase,
0 commit comments