File tree Expand file tree Collapse file tree 2 files changed +14
-9
lines changed
src/Oracle/Validate/Requests/TestRun Expand file tree Collapse file tree 2 files changed +14
-9
lines changed Original file line number Diff line number Diff line change 1
1
# shellcheck shell=bash
2
2
3
+ # shellcheck disable=SC2121
3
4
set unstable := true
4
5
5
6
format :
6
7
#!/usr/bin/env bash
7
- fourmolu -i src app test test-E2E test-lib CI/ rewrite-libs
8
+ # shellcheck disable=SC2034
9
+ for i in {1..3 }; do
10
+ fourmolu -i src app test test-E2E test-lib CI/ rewrite-libs
11
+ done
8
12
cabal-fmt -i anti.cabal CI/ rewrite-libs/ rewrite-libs.cabal
9
13
nixfmt *.nix
10
14
nixfmt nix/ *.nix
Original file line number Diff line number Diff line change @@ -144,16 +144,17 @@ instance Monad m => ToJSON m TestRunRejection where
144
144
$ " unacceptable try index. Expecting at most "
145
145
<> show maxIx
146
146
<> " run attempts for a given commit"
147
- toJSON ( UnacceptableRole
147
+ toJSON
148
+ ( UnacceptableRole
148
149
(RegisterRoleKey _ (Repository org repo) (Username user))
149
150
) =
150
- stringJSON
151
- $ " unacceptable role. User "
152
- <> show user
153
- <> " has not been registered within the repository "
154
- <> show org
155
- <> " /"
156
- <> show repo
151
+ stringJSON
152
+ $ " unacceptable role. User "
153
+ <> show user
154
+ <> " has not been registered within the repository "
155
+ <> show org
156
+ <> " /"
157
+ <> show repo
157
158
toJSON NoRegisteredKeyVerifiesTheSignature =
158
159
stringJSON
159
160
" there is no registered Ed25519 SSH key that can verify the signature"
You can’t perform that action at this time.
0 commit comments