diff options
author | Daniel Kirchner <daniel@ekpyron.org> | 2018-09-04 23:17:07 +0800 |
---|---|---|
committer | Daniel Kirchner <daniel@ekpyron.org> | 2018-09-04 23:36:47 +0800 |
commit | 1cd96b2dc482ed484e87de7c26a4af54aca45e1d (patch) | |
tree | e9ad333fa078f5208e9041e8fcc6e73b454a9238 /.circleci/config.yml | |
parent | cc7daf7b476f498c4dcde7bdb342974097ffe9bf (diff) | |
download | dexon-solidity-1cd96b2dc482ed484e87de7c26a4af54aca45e1d.tar.gz dexon-solidity-1cd96b2dc482ed484e87de7c26a4af54aca45e1d.tar.zst dexon-solidity-1cd96b2dc482ed484e87de7c26a4af54aca45e1d.zip |
Trailing whitespace detection script and circleci job.
Diffstat (limited to '.circleci/config.yml')
-rw-r--r-- | .circleci/config.yml | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml index 4514626b..aec8be18 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -179,6 +179,15 @@ jobs: name: Check spelling command: ~/.local/bin/codespell -S "*.enc,.git" -I ./scripts/codespell_whitelist.txt + test_trailing_whitespace: + docker: + - image: buildpack-deps:artful + steps: + - checkout + - run: + name: Check for trailing whitespace + command: ./scripts/detect_trailing_whitespace.sh + test_buglist: docker: - image: circleci/node @@ -263,6 +272,7 @@ workflows: build_all: jobs: - test_check_spelling: *build_on_tags + - test_trailing_whitespace: *build_on_tags - test_buglist: *build_on_tags - build_emscripten: *build_on_tags - test_emscripten_solcjs: |