Add CI check to verify rebar.lock

This commit is contained in:
Tino Breddin 2019-11-26 17:24:02 +01:00
parent eec70f03a5
commit 04445e4dee

View File

@ -8,6 +8,15 @@ executors:
working_directory: ~/aesophia
jobs:
verify_rebar_lock:
executor: aebuilder
steps:
- checkout
- run:
name: Ensure lock file is up-to-date
command: |
./rebar3 upgrade
git diff --quiet -- rebar.lock || (echo "rebar.lock is not up-to-date" && exit 1)
build:
executor: aebuilder
steps: