diff --git a/.circleci/config.yml b/.circleci/config.yml index e88bccc..6f025d0 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -34,7 +34,12 @@ references: command: make test - run: name: Lint - command: make lint + command: | + if [ "${LINT:-1}" -eq 0 ]; then + echo "[LINT=0] Lint step skipped." >&2 + else + make lint + fi jobs: build_7.10.3: @@ -44,6 +49,8 @@ jobs: build_8.0.2: <<: *stack_build environment: + # FIXME: https://circleci.com/gh/thoughtbot/yesod-auth-oauth2/115 + LINT: "0" STACK_ARGUMENTS: --resolver lts-9.21 build_8.2.2: <<: *stack_build