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 df5f8f4 commit e753e87Copy full SHA for e753e87
.github/workflows/haskell-ci.yml
@@ -23,6 +23,18 @@ concurrency:
23
cancel-in-progress: true
24
25
jobs:
26
+ check-formatting:
27
+ name: Check formatting
28
+ runs-on: ubuntu-latest
29
+ steps:
30
+ - uses: actions/checkout@v4
31
+ - name: install fourmolu
32
+ run: |
33
+ wget https://github.com/fourmolu/fourmolu/releases/download/v0.17.0.0/fourmolu-0.17.0.0-linux-x86_64
34
+ chmod +x fourmolu-0.17.0.0-linux-x86_64
35
+ mv fourmolu-0.17.0.0-linux-x86_64 fourmolu
36
+ - run: ./fourmolu -c .
37
+
38
test-with-cabal:
39
name: Haskell-CI - Linux - ${{ matrix.ghc-version }}
40
0 commit comments