Skip to content

Fixes #9: Handle circular references #31

Fixes #9: Handle circular references

Fixes #9: Handle circular references #31

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- main
jobs:
mix_test:
name: mix test (Erlang/OTP ${{matrix.otp}} | Elixir ${{matrix.elixir}})
runs-on: ubuntu-latest
container: hexpm/elixir:${{ matrix.elixir }}-erlang-${{ matrix.otp }}-alpine-3.11.6
strategy:
fail-fast: false
matrix:
include:
- elixir: 1.10.3
otp: 21.3.8.16
- elixir: 1.11.2
otp: 21.3.8.16
- elixir: 1.11.2
otp: 23.0.2
steps:
- uses: actions/[email protected]
- name: Install Dependencies
run: |
mix local.rebar --force
mix local.hex --force
mix deps.get
- run: mix test
check_formatted:
name: Check formatted
runs-on: ubuntu-latest
container: hexpm/elixir:${{ matrix.elixir }}-erlang-${{ matrix.otp }}-alpine-3.11.6
strategy:
matrix:
include:
- elixir: 1.11.2
otp: 23.0.2
steps:
- uses: actions/[email protected]
- run: mix format --check-formatted