@@ -58,7 +58,7 @@ main = do
58
58
_ <- Cache .restoreCache' { paths: [] , primaryKey: " restorecache" }
59
59
_ <- Cache .restoreCache { paths: [] , primaryKey: " restorecache" , restoreKeys: Nothing , options: Nothing }
60
60
_ <- Cache .restoreCache { paths: [] , primaryKey: " restorecache" , restoreKeys: Just [ " a" ], options: Nothing }
61
- Cache .restoreCache { paths: [] , primaryKey: " restorecaceh" , restoreKeys: Just [ " a" ], options: Just (Cache .defaultDownloadOptions { useAzureSdk = Just true , downloadConcurrency = Just true , timeoutInMs = Just 10.0 })}
61
+ Cache .restoreCache { paths: [] , primaryKey: " restorecaceh" , restoreKeys: Just [ " a" ], options: Just (Cache .defaultDownloadOptions { useAzureSdk = Just true , downloadConcurrency = Just true , timeoutInMs = Just 10.0 }) }
62
62
63
63
-- Tests for GitHub.Actions.Exec
64
64
let
@@ -68,7 +68,7 @@ main = do
68
68
runAff_ execCb $ runExceptT do
69
69
_ <- Exec .exec' " pwd"
70
70
_ <- Exec .exec { command: " pwd" , args: Just [ " -L" ], options: Nothing }
71
- Exec .exec { command: " pwd" , args: Just [ " -L" ], options: Just (Exec .defaultExecOptions { delay = Just 10.0 })}
71
+ Exec .exec { command: " pwd" , args: Just [ " -L" ], options: Just (Exec .defaultExecOptions { delay = Just 10.0 }) }
72
72
73
73
-- Tests for GitHub.Actions.IO
74
74
let
@@ -78,7 +78,7 @@ main = do
78
78
runAff_ ioCb $ runExceptT do
79
79
_ <- Exec .exec' " touch test.txt"
80
80
_ <- IO .cp' { source: " test.txt" , dest: " test1.txt" }
81
- _ <- IO .cp { source: " test1.txt" , dest: " test2.txt" , options: Just (IO .defaultCopyOptions { force = Just true })}
81
+ _ <- IO .cp { source: " test1.txt" , dest: " test2.txt" , options: Just (IO .defaultCopyOptions { force = Just true }) }
82
82
_ <- IO .mv' { source: " test2.txt" , dest: " test3.txt" }
83
83
_ <- IO .mv { source: " test3.txt" , dest: " test4.txt" , options: Just (IO .defaultMoveOptions { force = Just true }) }
84
84
_ <- IO .rmRF { inputPath: " test4.txt" }
0 commit comments