Skip to content

Bump version to 0.6.5 #31

Bump version to 0.6.5

Bump version to 0.6.5 #31

Workflow file for this run

on: push
name: test
jobs:
test:
runs-on: ubuntu-latest
name: OTP ${{matrix.otp}} / Elixir ${{matrix.elixir}}
env:
MIX_ENV: test
strategy:
matrix:
otp: ["24.0", "25.0"]
elixir: ["1.13", "1.14"]
steps:
- uses: actions/checkout@v2
- uses: erlef/setup-elixir@v1
with:
otp-version: ${{matrix.otp}}
elixir-version: ${{matrix.elixir}}
- run: mix deps.get
- run: mix compile --warnings-as-errors
- run: mix test