Skip to content

Merge pull request #153 from Bluetab/feature/td-6911 #550

Merge pull request #153 from Bluetab/feature/td-6911

Merge pull request #153 from Bluetab/feature/td-6911 #550

Workflow file for this run

name: test
on: push
jobs:
test:
runs-on: ubuntu-20.04
services:
redis:
image: library/redis:6.2-alpine
options: >-
--health-cmd "redis-cli ping"
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports:
- 6380:6379
steps:
- uses: actions/checkout@v2
- uses: erlef/setup-elixir@v1
with:
otp-version: "27.2"
elixir-version: "1.18.1"
- run: mix deps.get
- run: mix credo --strict
- run: mix test
env:
REDIS_HOST: localhost