Skip to content

Instantly share code, notes, and snippets.

@theguuholi
Created July 20, 2021 11:47
Show Gist options
  • Save theguuholi/e1e9b0339464e59a72afd5c33acc9fd5 to your computer and use it in GitHub Desktop.
Save theguuholi/e1e9b0339464e59a72afd5c33acc9fd5 to your computer and use it in GitHub Desktop.
sudo: required
language: elixir
elixir:
- '1.10'
opt_release: '22.2.6'
addons:
postgres: "9.4"
services:
- postgresql
- docker
cache:
directories:
- _build
- deps
before_script:
- mix local.hex --force
- mix local.rebar --force
- mix do deps.get, deps.compile
script:
- mix format --check-formatted --dry-run
- mix credo --strict
- mix sobelow --config
- mix coveralls.json
after_success:
- bash <(curl -s https://codecov.io/bash)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment