From: Étienne BERSAC Date: Wed, 6 Sep 2017 14:49:10 +0000 (+0200) Subject: Add CircleCI job X-Git-Tag: v10.0~40^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=fa42b61f7a71fdfe0ef07cd0ea09842c34538286;p=pgbadger Add CircleCI job --- diff --git a/.circleci/config.yml b/.circleci/config.yml new file mode 100644 index 0000000..0449f3c --- /dev/null +++ b/.circleci/config.yml @@ -0,0 +1,22 @@ +version: 2 + +jobs: + test: + docker: [{image: "perl:5.26"}] + working_directory: /tmp/pgbadger + steps: + - run: + name: Install git and ssh for checkout + command: apt update -y && apt install -y git ssh + - checkout + - run: + name: Testing perl syntax + command: | + perl -c pgbadger + ./pgbadger --help + +workflows: + version: 2 + pipeline: + jobs: + - test diff --git a/pgbadger b/pgbadger old mode 100644 new mode 100755