Skip to content

Commit 9638ba0

Browse files
vrom911Dmitrii Kovanikov
authored and
Dmitrii Kovanikov
committed
[Holmusk#56] Bump up to 8.6.5, clean up a bit (Holmusk#57)
* [Holmusk#56] Bump up to 8.6.5, clean up a bit Resolves Holmusk#56 * [Holmusk#56] Add .cabal file Resolves Holmusk#56 * Fix HLint * Update Circle CI configuration and Docker image
1 parent 15a2839 commit 9638ba0

28 files changed

+606
-3083
lines changed

.circleci/circle.yml

-33
This file was deleted.

.circleci/config.yml

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
version: 2
2+
jobs:
3+
build-and-test-backend:
4+
docker:
5+
- image: holmusk/haskell-ci
6+
steps:
7+
- checkout
8+
- restore-cache:
9+
key: stack-{{ .Environment.CACHE_VERSION }}-{{ checksum "stack.yaml" }}
10+
- run: curl https://raw.githubusercontent.com/kowainik/relude/55968311244690f5cc8b4484a37a63d988ea2ec4/.hlint.yaml -o .hlint-relude.yaml
11+
- run: curl -sSL https://raw.github.com/ndmitchell/neil/master/misc/travis.sh | sh -s -- hlint -h .hlint-relude.yaml .
12+
- run: stack install -j1 && stack test --fast
13+
- save_cache:
14+
key: stack-{{ .Environment.CACHE_VERSION }}-{{ checksum "stack.yaml" }}
15+
paths:
16+
- "~/.stack"
17+
- ".stack-work"
18+
19+
workflows:
20+
version: 2
21+
build_and_test:
22+
jobs:
23+
- build-and-test-backend

.gitignore

-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
dist
22
dist-*
33
cabal-dev
4-
*.cabal
54
*.o
65
*.hi
76
*.chi

0 commit comments

Comments
 (0)