Skip to content

Merge pull request #37 from boonious/refactor-fascade-pattern-SOLID #34

Merge pull request #37 from boonious/refactor-fascade-pattern-SOLID

Merge pull request #37 from boonious/refactor-fascade-pattern-SOLID #34

Workflow file for this run

name: Elixir CI
on:
pull_request:
push:
branches: [ master ]
jobs:
test:
name: build and test
runs-on: ubuntu-20.04
env:
MIX_ENV: test
steps:
- name: checkout repo
uses: actions/checkout@v2
- name: setup Elixir
uses: erlef/setup-beam@v1
with:
otp-version: '21.3'
elixir-version: '1.10.4'
- name: install dependencies
run: mix deps.get
- name: check formatting
run: mix format --check-formatted
- name: check code
run: mix credo
- name: compile test env
run: mix compile
- name: run tests
run: mix test