mirror of
https://github.com/freckle/yesod-auth-oauth2.git
synced 2026-04-12 14:19:03 +02:00
Skip linting step on 8.0
This commit is contained in:
parent
5d59c4e385
commit
8283d21997
@ -34,7 +34,12 @@ references:
|
|||||||
command: make test
|
command: make test
|
||||||
- run:
|
- run:
|
||||||
name: Lint
|
name: Lint
|
||||||
command: make lint
|
command: |
|
||||||
|
if [ "${LINT:-1}" -eq 0 ]; then
|
||||||
|
echo "[LINT=0] Lint step skipped." >&2
|
||||||
|
else
|
||||||
|
make lint
|
||||||
|
fi
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build_7.10.3:
|
build_7.10.3:
|
||||||
@ -44,6 +49,8 @@ jobs:
|
|||||||
build_8.0.2:
|
build_8.0.2:
|
||||||
<<: *stack_build
|
<<: *stack_build
|
||||||
environment:
|
environment:
|
||||||
|
# FIXME: https://circleci.com/gh/thoughtbot/yesod-auth-oauth2/115
|
||||||
|
LINT: "0"
|
||||||
STACK_ARGUMENTS: --resolver lts-9.21
|
STACK_ARGUMENTS: --resolver lts-9.21
|
||||||
build_8.2.2:
|
build_8.2.2:
|
||||||
<<: *stack_build
|
<<: *stack_build
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user