hnix-store/.github/workflows/ci.dhall

21 lines
658 B
Plaintext
Raw Permalink Normal View History

2023-11-08 17:44:21 +03:00
let haskellCi =
https://raw.githubusercontent.com/sorki/github-actions-dhall/main/haskell-ci.dhall
let defSteps = haskellCi.defaultCabalSteps
in haskellCi.generalCi
2023-11-29 17:08:47 +03:00
( haskellCi.withNix
( defSteps
with docStep = None haskellCi.BuildStep
2023-11-29 17:08:47 +03:00
with extraSteps.pre
=
defSteps.extraSteps.pre
# [ haskellCi.installCachixStep "hnix-store" ]
)
)
2023-11-08 17:44:21 +03:00
haskellCi.DhallMatrix::{
2024-07-27 20:53:37 +03:00
, ghc = [ haskellCi.GHC.GHC982, haskellCi.GHC.GHC966 ]
2023-11-08 17:44:21 +03:00
, os = [ haskellCi.OS.Ubuntu, haskellCi.OS.MacOS ]
}
: haskellCi.CI.Type