mirror of
https://github.com/freckle/yesod-auth-oauth2.git
synced 2026-01-20 16:11:56 +01:00
Skip linting step on 8.0
This commit is contained in:
parent
5d59c4e385
commit
8283d21997
@ -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
|
||||
|
||||
Loading…
Reference in New Issue
Block a user