File tree Expand file tree Collapse file tree 1 file changed +15
-3
lines changed
Expand file tree Collapse file tree 1 file changed +15
-3
lines changed Original file line number Diff line number Diff line change 1- name : Code style check
1+ name : Code style checks
22
33concurrency :
44 group : formatting-${{ github.ref_name }}
1818 fetch-depth : 1
1919 - name : Install Nix
2020 uses : cachix/install-nix-action@v31
21- - name : Check code formatting
21+ - name : Format check
2222 run : |
23- nix develop '#formatters' --command fourmolu --mode=check --check-idempotence servant servant-*
23+ nix develop '#formatters' --command fourmolu --mode=check --check-idempotence servant servant-*
24+ lint :
25+ runs-on : ubuntu-latest
26+ steps :
27+ - name : Checkout Code
28+ uses : actions/checkout@v4
29+ with :
30+ fetch-depth : 1
31+ - name : Install Nix
32+ uses : cachix/install-nix-action@v31
33+ - name : Run hlint check
34+ run : |
35+ nix develop '#formatters' --command hlint servant servant-*
You can’t perform that action at this time.
0 commit comments