Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/Language/Github/Actions/Concurrency.hs
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ data Concurrency = Concurrency
{ -- | Concurrency group identifier
group :: Maybe Text,
-- | Whether to cancel in-progress runs
cancelInProgress :: Maybe Text
cancelInProgress :: Maybe Bool
}
deriving stock (Eq, Generic, Ord, Show)

Expand Down
3 changes: 1 addition & 2 deletions test/Language/Github/Actions/WorkflowTest.hs
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
{-# LANGUAGE OverloadedStrings #-}
{-# LANGUAGE TypeApplications #-}
{-# OPTIONS_GHC -Wno-incomplete-uni-patterns #-}

Expand Down Expand Up @@ -29,7 +28,7 @@ test_goldenWorkflowFromYaml = do
testGroup
"Yaml Roundtrip"
[ runGoldenVsToYamlFileTest testYamlFilePath
| testYamlFilePath <- testYamlFiles
| testYamlFilePath <- testYamlFiles
]
where
runGoldenVsToYamlFileTest testYamlFilePath =
Expand Down
Loading