Skip to content

Add a contributing file #25

Add a contributing file

Add a contributing file #25

Workflow file for this run

name: Ruby
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
test:
runs-on: ubuntu-20.04
name: OTP ${{matrix.otp}} / Elixir ${{matrix.elixir}}
strategy:
matrix:
otp: ['23.2']
elixir: ['1.11']
steps:
- uses: actions/checkout@v2
with:
submodules: true
- uses: erlef/setup-beam@v1
with:
otp-version: ${{matrix.otp}}
elixir-version: ${{matrix.elixir}}
- run: mix deps.get
env:
MIX_ENV: test
- run: mix deps.compile
env:
MIX_ENV: test
- run: mix format --check-formatted
- run: mix test