Skip to content

fix: failed to reconnect if connect failed due to nxdomin #29

fix: failed to reconnect if connect failed due to nxdomin

fix: failed to reconnect if connect failed due to nxdomin #29

Workflow file for this run

name: Run test suites
on:
pull_request:
push:
branches:
- master
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
otp:
- 24.3
- 25.1
steps:
- uses: actions/checkout@v3
- uses: erlef/setup-beam@v1
with:
otp-version: ${{ matrix.otp }}
rebar3-version: 3
- name: setup redis cluster
run: docker compose up -d --wait
- name: eunit
run: rebar3 eunit -v -c
- name: cover report
run: rebar3 cover -v
- uses: actions/upload-artifact@v3
with:
name: cover
path: _build/test/cover
- name: teardown redis cluster
if: always()
run: docker compose down || true