Skip to content

Implement new separate api for cast, validate and transform #55

Implement new separate api for cast, validate and transform

Implement new separate api for cast, validate and transform #55

Workflow file for this run

name: Elixir CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
name: Build and test
runs-on: ubuntu-latest
env:
MIX_ENV: test
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
steps:
- uses: actions/checkout@v2
- name: Setup Erlang/OTP with optional Elixir (and mix) and/or rebar3
uses: erlef/[email protected]
with:
otp-version: 25.0
elixir-version: 1.14.3
- name: Restore dependencies cache
uses: actions/cache@v2
with:
path: deps
key: ${{ runner.os }}-mix-${{ hashFiles('**/mix.lock') }}
restore-keys: ${{ runner.os }}-mix-
- name: Install dependencies
run: mix deps.get
- name: Run tests
run: mix test
- name: Run coveralls
run: mix coveralls.github