Skip to content

Merge branch 'main' of github.com:Bluetab/td-cache into feature/td-3612 #541

Merge branch 'main' of github.com:Bluetab/td-cache into feature/td-3612

Merge branch 'main' of github.com:Bluetab/td-cache into feature/td-3612 #541

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: '23.3.4.18'
elixir-version: '1.12.3'
- run: mix deps.get
- run: mix credo --strict
- run: mix test
env:
REDIS_HOST: localhost