From: Étienne BERSAC Date: Wed, 20 Sep 2017 07:03:19 +0000 (+0200) Subject: Add a job to check README X-Git-Tag: v10.0~36^2~1 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=82b2f723bd751b13743654b0a2a93712a61e5478;p=pgbadger Add a job to check README --- diff --git a/.circleci/config.yml b/.circleci/config.yml index f468a20..6034532 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -12,9 +12,22 @@ jobs: - run: name: Executing tests command: prove + doc: + docker: [{image: "perl:5.26"}] + working_directory: /tmp/pgbadger + steps: + - checkout + - run: + name: Check README is up to date with pod + command: | + perl Makefile.PL + touch --no-create doc/pgBadger.pod + make README + git diff --exit-code workflows: version: 2 pipeline: jobs: - test + - doc