Skip to content

hslua-core: bump version to 2.3.2.1 #729

hslua-core: bump version to 2.3.2.1

hslua-core: bump version to 2.3.2.1 #729

Triggered via push January 8, 2026 15:09
Status Failure
Total duration 15s
Artifacts

lint.yml

on: push
Fit to window
Zoom out
Zoom in

Annotations

1 error and 4 warnings
hlint
HLint failed with status: 1. Warning (2), Suggestion (2)
hlint: hslua-packaging/test/HsLua/Packaging/ModuleTests.hs#L90
Warning in tests in module HsLua.Packaging.ModuleTests: Redundant <$> ▫︎ Found: "moduleDocFunctions <$> peekModuleDoc Lua.top\n >>=\n \\case\n fd : _ -> pure fd\n _ -> fail \"No documented functions\"" ▫︎ Perhaps: "(peekModuleDoc Lua.top\n >>=\n (\\case\n fd : _ -> pure fd\n _ -> fail \"No documented functions\")\n . moduleDocFunctions)"
hlint: hslua-packaging/test/HsLua/Packaging/FunctionTests.hs#L1
Warning in module HsLua.Packaging.FunctionTests: Unused LANGUAGE pragma ▫︎ Found: "{-# LANGUAGE LambdaCase #-}"
hlint: hslua-module-zip/src/HsLua/Module/Zip.hs#L170
Suggestion in peekZipOptions in module HsLua.Module.Zip: Redundant bracket ▫︎ Found: "\\case\n Just True -> (Just OptPreserveSymbolicLinks)\n _ -> Nothing" ▫︎ Perhaps: "\\case\n Just True -> Just OptPreserveSymbolicLinks\n _ -> Nothing"
hlint: hslua-marshalling/test/HsLua/MarshallingTests.hs#L54
Suggestion in peekNested in module HsLua.MarshallingTests: Redundant bracket ▫︎ Found: "\\case\n TypeNumber -> Element <$!> peekIntegral idx\n TypeTable -> (List <$!> peekList peekNested idx)\n _ -> failPeek \"you dun goofed\"" ▫︎ Perhaps: "\\case\n TypeNumber -> Element <$!> peekIntegral idx\n TypeTable -> List <$!> peekList peekNested idx\n _ -> failPeek \"you dun goofed\""