-
Notifications
You must be signed in to change notification settings - Fork 0
/
hpack-cli.hsfiles
424 lines (337 loc) · 10.4 KB
/
hpack-cli.hsfiles
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
{-# START_FILE .github/workflows/main.yml #-}
{{=<% %>=}}
---
# yamllint disable rule:line-length
name: CI Build
# yamllint disable-line rule:truthy
on:
# Run Daily
schedule:
- cron: '0 0 * * *'
# Run on Push
push:
# Run on Tag Creation
create:
# Allow Running Manually
workflow_dispatch:
jobs:
build-stack:
name: Stack
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Cache Stack Artifacts
uses: actions/cache@v2
with:
key: stack-build-lts-${{ github.ref }}-${{ github.sha }}
path: |
~/.stack/
.stack-work/
restore-keys: |
stack-build-lts-${{ github.ref }}-
stack-build-lts-
stack-build-
- uses: haskell/actions/setup@v2
with:
enable-stack: true
stack-no-global: true
- run: stack test --fast --haddock --pedantic --resolver lts-20
# Stackage Nightly - Failures Allowed
build-nightly:
name: Stackage Nightly
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Get Current Date
id: date
run: echo -e "::set-output name=year::$(date +%Y)\n::set-output name=month::$(date +%m)\n::set-output name=day::$(date +%d)"
- name: Cache Stack Artifacts
uses: actions/cache@v2
with:
key: stack-build-nightly-${{ steps.date.outputs.year }}-${{ steps.date.outputs.month }}-${{ steps.date.outputs.day }}-${{ github.ref }}-${{ github.sha }}
path: |
~/.stack/
.stack-work/
restore-keys: |
stack-build-nightly-${{ steps.date.outputs.year }}-${{ steps.date.outputs.month }}-${{ steps.date.outputs.day }}-${{ github.ref }}-
stack-build-nightly-${{ steps.date.outputs.year }}-${{ steps.date.outputs.month }}-${{ steps.date.outputs.day }}-
stack-build-nightly-${{ steps.date.outputs.year }}-${{ steps.date.outputs.month }}-
stack-build-nightly-${{ steps.date.outputs.year }}-
stack-build-nightly-
- uses: haskell/actions/setup@v2
with:
enable-stack: true
stack-no-global: true
- run: stack test --fast --haddock --pedantic --resolver nightly
continue-on-error: true
# Cabal Builds w/ 3 Latest GHC Versions
build-cabal:
name: GHC / Cabal
runs-on: ubuntu-latest
strategy:
matrix:
ghc: ['8.10', '9.0', '9.2']
steps:
- uses: actions/checkout@v3
- name: Cache Cabal Artifacts
uses: actions/cache@v2
with:
key: cabal-build-${{ matrix.ghc }}-${{ github.ref }}-${{ github.sha }}
path: |
~/.cabal/packages/
~/.cabal/store
dist-newstyle/
restore-keys: |
cabal-build-${{ matrix.ghc }}-${{ github.ref }}-
cabal-build-${{ matrix.ghc }}-
cabal-build-
- uses: haskell/actions/setup@v2
with:
ghc-version: ${{ matrix.ghc }}
cabal-version: latest
enable-stack: true
- run: cabal update
- run: cabal new-test --enable-tests && cabal new-haddock
<%={{ }}=%>
{-# START_FILE .gitignore #-}
.stack-work/
{-# START_FILE CHANGELOG.md #-}
# CHANGELOG
## v0.1.0.0
* Initial release
{-# START_FILE LICENSE #-}
Copyright {{author-name}}{{^author-name}}Author name here{{/author-name}} (c) {{year}}{{^year}}2019{{/year}}
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above
copyright notice, this list of conditions and the following
disclaimer in the documentation and/or other materials provided
with the distribution.
* Neither the name of {{author-name}}{{^author-name}}Author name here{{/author-name}} nor the names of other
contributors may be used to endorse or promote products derived
from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
{-# START_FILE README.md #-}
# {{name}}
[![{{name}} Build Status](https://github.com/{{github-username}}{{^github-username}}githubuser{{/github-username}}/{{name}}/actions/workflows/main.yml/badge.svg)](https://github.com/{{github-username}}{{^github-username}}githubuser{{/github-username}}/{{name}}/actions/workflows/main.yml)
Describe your project here.
Requires [`stack`][get-stack]:
```sh
stack run
```
[get-stack]: https://docs.haskellstack.org/en/stable/README/
## Install
You can install the CLI exe by running `stack install`. This lets you call the
executable directly instead of through stack:
```sh
stack install
export PATH="${HOME}/.local/bin/:${PATH}"
{{name}}
```
## Build
You can build the project with stack:
```sh
stack build
```
For development, you can enable fast builds with file-watching,
documentation-building, & test-running:
```sh
stack test --haddock --fast --file-watch --pedantic
```
To build & open the documentation, run:
```sh
stack haddock --open {{name}}
```
## LICENSE
BSD-3
{-# START_FILE Setup.hs #-}
import Distribution.Simple
main = defaultMain
{-# START_FILE app/Main.hs #-}
module Main where
import Lib.Main
main :: IO ()
main = getArgs >>= run
{-# START_FILE fourmolu.yaml #-}
---
indentation: 4
function-arrows: leading
comma-style: leading
import-export-style: leading
record-brace-space: true
newlines-between-decls: 2
haddock-style: single-line
haddock-style-module: multi-line
{-# START_FILE package.yaml #-}
---
name:
{{name}}
version:
0.1.0.0
github:
{{github-username}}{{^github-username}}githubuser{{/github-username}}/{{name}}
homepage:
https://github.com/{{github-username}}{{^github-username}}githubuser{{/github-username}}/{{name}}#readme
license:
BSD3
license-file:
LICENSE
author:
{{author-name}}{{^author-name}}Author name here{{/author-name}}
maintainer:
{{author-email}}{{^author-email}}example@example.com{{/author-email}}
copyright:
{{copyright}}{{^copyright}}{{year}}{{^year}}2023{{/year}} {{author-name}}{{^author-name}}Author name here{{/author-name}}{{/copyright}}
category:
{{category}}{{^category}}Web{{/category}}
extra-source-files:
- README.md
- CHANGELOG.md
synopsis:
Short, one-line summary of project here.
description: |
Longer description of package here.
Maybe include a simple usage example.
language: GHC2021
ghc-options:
- -Wall
- -Wcompat
- -Wimplicit-lift
- -Wincomplete-patterns
- -Wincomplete-record-updates
- -Wincomplete-uni-patterns
- -Wmissing-exported-signatures
- -Wmissing-methods
- -Wmissing-signatures
- -Wname-shadowing
- -Wredundant-bang-patterns
- -Wredundant-constraints
- -Wunused-packages
- -O2
default-extensions:
- DerivingStrategies
- LambdaCase
- MultiWayIf
- OverloadedStrings
- RecordWildCards
- ViewPatterns
dependencies:
- base >= 4.7 && < 5
library:
source-dirs:
src
dependencies:
- cmdargs >= 0.10 && < 1
executables:
{{name}}:
source-dirs:
app
main:
Main.hs
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts "-N -T"
dependencies:
- {{name}}
tests:
{{name}}-test:
main: Spec.hs
source-dirs:
tests
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts "-N -T"
- -Wno-unused-packages
dependencies:
- {{name}}
- hedgehog
- tasty
- tasty-hedgehog
- tasty-hunit
{-# START_FILE src/Lib/Main.hs #-}
{-# LANGUAGE DeriveDataTypeable #-}
-- | CLI application harness.
module Lib.Main
( run
, getArgs
, Args (..)
) where
import Data.Version (showVersion)
import System.Console.CmdArgs
( Data
, Typeable
, cmdArgs
, help
, helpArg
, name
, program
, summary
, (&=)
)
-- TODO: fix this import
import Paths_{{name}} (version)
-- | Run the executable.
run :: Args -> IO ()
run Args {} = putStrLn "hello world"
-- | CLI arguments supported by the executable.
data Args = Args {}
deriving (Show, Read, Eq, Data, Typeable)
-- | Parse the CLI arguments with 'System.Console.CmdArgs'.
getArgs :: IO Args
getArgs = cmdArgs argSpec
-- | Defines & documents the CLI arguments.
argSpec :: Args
argSpec =
Args {}
&= summary
( "{{name}} v"
<> showVersion version
<> ", {{author-name}}{{^author-name}}Author name here{{/author-name}} {{year}}{{^year}}2021{{/year}}"
)
&= program "{{name}}"
&= helpArg [name "h"]
&= help "Short, one-line summary of project here."
{-# START_FILE src/Lib.hs #-}
module Lib where
{-# START_FILE tests/Spec.hs #-}
import Hedgehog
import Test.Tasty
import Test.Tasty.HUnit
import Test.Tasty.Hedgehog
import Hedgehog.Gen qualified as Gen
import Hedgehog.Range qualified as Range
main :: IO ()
main = defaultMain tests
tests :: TestTree
tests = testGroup "Tests" [unitTests, properties]
unitTests :: TestTree
unitTests = testGroup "Unit Tests" [testCase "2+2 = 4" testAddition]
where
testAddition :: Assertion
testAddition = (2 + 2) @?= (4 :: Integer)
properties :: TestTree
properties =
testGroup
"Properties"
[testProperty "Addition is Communative" testAdditionCommunative]
where
testAdditionCommunative :: Property
testAdditionCommunative = property $ do
let genInt = Gen.int $ Range.linear 0 9001
(a, b) <- forAll $ (,) <$> genInt <*> genInt
(a + b) === (b + a)