-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: CI/flake check (formating), commented code, dev shell
- Loading branch information
1 parent
a3f23c9
commit a35bfe7
Showing
3 changed files
with
62 additions
and
54 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,60 +1,66 @@ | ||
cabal-version: 3.8 | ||
name: github-action-scan | ||
version: 0.1.0.0 | ||
author: Gautier DI FOLCO | ||
maintainer: [email protected] | ||
category: Data | ||
build-type: Simple | ||
license: ISC | ||
license-file: LICENSE | ||
synopsis: Scan for vulnerabilities and create advisories on GitHub | ||
description: Scan for vulnerabilities and create advisories on GitHub. | ||
Homepage: http://github.com/blackheaven/github-action-scan | ||
tested-with: GHC==9.6.5 | ||
cabal-version: 3.8 | ||
name: github-action-scan | ||
version: 0.1.0.0 | ||
author: Gautier DI FOLCO | ||
maintainer: [email protected] | ||
category: Data | ||
build-type: Simple | ||
license: ISC | ||
license-file: LICENSE | ||
synopsis: Scan for vulnerabilities and create advisories on GitHub | ||
description: Scan for vulnerabilities and create advisories on GitHub. | ||
homepage: http://github.com/blackheaven/github-action-scan | ||
tested-with: GHC ==9.6.5 | ||
|
||
executable github-action-scan | ||
-- type: exitcode-stdio-1.0 | ||
main-is: Main.hs | ||
hs-source-dirs: app | ||
main-is: Main.hs | ||
hs-source-dirs: app | ||
default-extensions: | ||
DataKinds | ||
DefaultSignatures | ||
DeriveAnyClass | ||
DeriveGeneric | ||
DerivingStrategies | ||
DerivingVia | ||
DuplicateRecordFields | ||
FlexibleContexts | ||
GADTs | ||
GeneralizedNewtypeDeriving | ||
KindSignatures | ||
LambdaCase | ||
OverloadedRecordDot | ||
OverloadedStrings | ||
RankNTypes | ||
RecordWildCards | ||
ScopedTypeVariables | ||
TypeApplications | ||
TypeFamilies | ||
TypeOperators | ||
ghc-options: -threaded -rtsopts -with-rtsopts=-N -Wall -Wcompat -Widentities -Wincomplete-record-updates -Wincomplete-uni-patterns -Wpartial-fields -Wredundant-constraints | ||
DataKinds | ||
DefaultSignatures | ||
DeriveAnyClass | ||
DeriveGeneric | ||
DerivingStrategies | ||
DerivingVia | ||
DuplicateRecordFields | ||
FlexibleContexts | ||
GADTs | ||
GeneralizedNewtypeDeriving | ||
KindSignatures | ||
LambdaCase | ||
OverloadedRecordDot | ||
OverloadedStrings | ||
RankNTypes | ||
RecordWildCards | ||
ScopedTypeVariables | ||
TypeApplications | ||
TypeFamilies | ||
TypeOperators | ||
|
||
ghc-options: | ||
-threaded -rtsopts -with-rtsopts=-N -Wall -Wcompat -Widentities | ||
-Wincomplete-record-updates -Wincomplete-uni-patterns | ||
-Wpartial-fields -Wredundant-constraints | ||
|
||
build-depends: | ||
base | ||
, optparse-applicative | ||
, text | ||
, github-rest | ||
, sarif | ||
, bytestring | ||
, zlib | ||
, http-types | ||
, base | ||
, base64 | ||
, bytestring | ||
, Cabal | ||
, cabal-audit | ||
, cabal-install | ||
, Cabal-syntax | ||
, hsec-tools | ||
, fused-effects | ||
, containers | ||
, process | ||
, cabal-install | ||
, Cabal | ||
, fused-effects | ||
, github-rest | ||
, hsec-tools | ||
, http-types | ||
, kan-extensions | ||
default-language: Haskell2010 | ||
, optparse-applicative | ||
, process | ||
, sarif | ||
, text | ||
, zlib | ||
|
||
default-language: Haskell2010 |