This repository has been archived by the owner on Sep 19, 2023. It is now read-only.
Deprecate docception #19
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: CI | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
container: | |
image: elixir:1.9.1-slim | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Install Dependencies | |
run: | | |
mix local.rebar --force | |
mix local.hex --force | |
mix deps.get | |
- name: Run Tests | |
run: mix test | |
- name: Run Test Scripts | |
run: | | |
bash test.sh | |
bash example/test.sh | |
- name: Credo | |
run: mix credo --strict | |
- name: Dialyzer | |
run: mix dialyzer --halt-exit-status |