From ef4098cc9b57055122ce1cbc7af549479ee96fa4 Mon Sep 17 00:00:00 2001 From: Pavol Rusnak Date: Sat, 14 Nov 2020 16:40:42 +0100 Subject: [PATCH] ci(travis): install editorconfig-checker --- .travis.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 8b2f38b90..915d80573 100644 --- a/.travis.yml +++ b/.travis.yml @@ -27,7 +27,9 @@ install: # make sure poetry is installable without protobuf - install protoc later - curl -LO "https://github.com/google/protobuf/releases/download/v${PROTOBUF_VERSION}/protoc-${PROTOBUF_VERSION}-linux-x86_64.zip" - unzip "protoc-${PROTOBUF_VERSION}-linux-x86_64.zip" -d protoc - - export PATH="$(pwd)/protoc/bin:$PATH" + - curl -LO "https://github.com/editorconfig-checker/editorconfig-checker/releases/download/2.2.0/ec-linux-amd64.tar.gz" + - tar xfz ec-linux-amd64.tar.gz && mv bin/ec-linux-amd64 bin/editorconfig-checker + - export PATH="$(pwd)/bin:$(pwd)/protoc/bin:$PATH" script: - poetry run make style_check