Skip to content

Allow Epmd strategy to reconnect after connection failures #58

Allow Epmd strategy to reconnect after connection failures

Allow Epmd strategy to reconnect after connection failures #58

Workflow file for this run

name: elixir
on:
push:
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
otp: ['24.2', '25.0']
elixir: ['1.13.x', '1.14.x']
include:
- otp: '25.0'
elixir: '1.14.x'
latest: true
steps:
- uses: actions/checkout@v2
- uses: erlef/setup-beam@v1
with:
otp-version: ${{matrix.otp}}
elixir-version: ${{matrix.elixir}}
- run: mix deps.get
- if: ${{ matrix.latest }}
run: mix format --check-formatted --dry-run
- run: mix test