chore: bump to 0.3.2 #38
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test | |
on: push | |
jobs: | |
Test: | |
runs-on: ubuntu-latest | |
container: | |
image: mikaak/elixir:1.13-alpine | |
env: | |
MIX_ENV: test | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install Rebar & Hex | |
run: mix local.hex --force && mix local.rebar --force | |
- name: Install Tar | |
run: apk add --no-cache tar | |
- name: Cache Deps & Build | |
uses: actions/cache@v2 | |
with: | |
key: ${{github.ref}}-deps-build-cache | |
path: | | |
./deps | |
./_build | |
!._build/dev/lib/error_message/ | |
- name: Install Dependencies | |
run: mix deps.get | |
- name: Compile Project | |
run: mix compile | |
- name: Run Tests | |
run: mix test |