diff options
author | alexwl <alexey.a.kiryushin@gmail.com> | 2019-05-08 13:36:33 +0300 |
---|---|---|
committer | alexwl <alexey.a.kiryushin@gmail.com> | 2019-05-08 13:36:33 +0300 |
commit | 660e3020f5bbda277278355a861d8e3d6ebeeec8 (patch) | |
tree | e5359c9f13db5e3ebe8c4d0fd65ff733db3a95cf /.circleci | |
parent | 4ad872ac715e212c2c2c86e4a1a87f9c3a09ee91 (diff) |
Add support for GHC 8.6.5
Diffstat (limited to '.circleci')
-rw-r--r-- | .circleci/config.yml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml index 36f0768..6071275 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -65,6 +65,11 @@ jobs: environment: - STACK_FILE: "stack-8.6.4.yaml" <<: *defaults + + ghc-8.6.5: + environment: + - STACK_FILE: "stack-8.6.5.yaml" + <<: *defaults workflows: version: 2 @@ -76,3 +81,4 @@ workflows: - ghc-8.4.4 - ghc-8.6.3 - ghc-8.6.4 + - ghc-8.6.5 |