Skip to content

Extend Redix config to support all start_link/1 options #38

Extend Redix config to support all start_link/1 options

Extend Redix config to support all start_link/1 options #38

Workflow file for this run

---
name: Continuous Integration
on:
pull_request:
types:
- opened
- reopened
- synchronize
push:
branches:
- master
jobs:
test:
runs-on: ubuntu-latest
container:
image: elixir:1.11-alpine
services:
redis:
image: redis
ports: ["6379:6379"]
steps:
- name: Checkout
uses: actions/checkout@v2
with:
persist-credentials: false
- name: Install (os)
run: apk add --no-cache gcc g++ git make musl-dev tar zstd
- name: Install (mix)
run: |
mix local.rebar --force
mix local.hex --force
- name: Install (deps)
run: mix deps.get
- name: Run Tests
run: mix test
env:
REDIS_HOST: redis
REDIS_PORT: 6379
REDIS_POOL_SIZE: 1
- name: Run Formatter
run: mix format --check-formatted
- name: Run Credo
run: mix credo