We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c09353e commit 99ba82bCopy full SHA for 99ba82b
.github/workflows/ci.yml
@@ -43,6 +43,13 @@ jobs:
43
- name: Freeze
44
run: cabal freeze
45
46
+ # Install fix-whitespace since we need it for tests.
47
+ # This is done after the freeze to make sure we re-use the packages
48
+ - name: Install fix-whitespace
49
+ run: |
50
+ echo "import: cabal.project" > cabal.project.ci
51
+ cabal install fix-whitespace --project-file=cabal.project.ci
52
+
53
# Cache the contents of ~/.cabal/store to avoid rebuilding dependencies for
54
# every build. `restore-keys` makes it use the latest cache even if the
55
# fingerprint doesn't match, so we don't need to start from scratch every
0 commit comments