Skip to content

feat: prod impl

feat: prod impl #18

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
env:
MIX_ENV: test
strategy:
fail-fast: false
matrix:
include:
- pair:
elixir: 1.15.6
otp: 24.3.4
steps:
- uses: actions/checkout@v2
- uses: erlef/setup-beam@v1
with:
otp-version: ${{matrix.pair.otp}}
elixir-version: ${{matrix.pair.elixir}}
- run: mix deps.get
- run: mix deps.compile
- name: Create PLT file (needed for tests)
run: MIX_ENV=test mix dialyzer --plt
- run: mix test
- run: MIX_ENV=prod_test mix test