Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 13 additions & 1 deletion .credo.exs
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,19 @@
# or the `schema` macro in Ecto schemas to trigger DuplicatedCode, just
# set the `excluded_macros` parameter to `[:schema, :setup, :test]`.
#
{Credo.Check.Design.DuplicatedCode, excluded_macros: []},
{
Credo.Check.Design.DuplicatedCode,
excluded_macros: [],
files: %{
excluded: [
# Tests may have a bit of duplication, it's fine
"test/**/*_test.exs",
# Ah the formatters... we may want to make them nicer one of these days or use a library.
# But.. not now.
"lib/benchee/formatters/console/*.ex"
]
}
},
# You can also customize the exit_status of each check.
# If you don't want TODO comments to cause `mix credo` to fail, just
# set this value to 0 (zero).
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,10 @@ jobs:
otp_version: '27.3'
- elixir_version: '1.18'
otp_version: '27.3'
- elixir_version: '1.19'
otp_version: '28.1'
type_check: true
lint: true
- elixir_version: '1.19.0-rc.2'
otp_version: '28.1'

steps:
- name: Checkout
Expand Down
Loading