Skip to content
Closed
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
7 changes: 6 additions & 1 deletion .formatter.exs
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,17 @@ export_locals_without_parens = [
adapter: 2
]

internal = [
assert_cached: 1,
refute_cached: 1
]

[
inputs: [
"lib/**/*.{ex,exs}",
"test/**/*.{ex,exs}",
"mix.exs"
],
locals_without_parens: export_locals_without_parens,
locals_without_parens: export_locals_without_parens ++ internal,
export: [locals_without_parens: export_locals_without_parens]
]
10 changes: 10 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ on: push
jobs:
test:
runs-on: ubuntu-latest
services:
redis:
image: redis
ports:
- 6379/tcp
strategy:
matrix:
elixir:
Expand Down Expand Up @@ -57,6 +62,11 @@ jobs:

test-poison3:
runs-on: ubuntu-latest
services:
redis:
image: redis
ports:
- 6379/tcp
container:
image: elixir:1.9-slim
steps:
Expand Down
2 changes: 2 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
language: elixir
services:
- redis-server
env:
- MIX_ENV=test
matrix:
Expand Down
Loading