mirror of
https://github.com/NorfairKing/feedback.git
synced 2024-11-26 13:21:05 +03:00
20 lines
510 B
YAML
20 lines
510 B
YAML
loops:
|
|
ci:
|
|
description: Run all of CI
|
|
command: nix-build ci.nix --no-out-link
|
|
|
|
install:
|
|
description: Work on `feedback` and its `--help` page.
|
|
script: |
|
|
set -x
|
|
stack install :feedback \
|
|
--fast --no-nix --system-ghc --with-hpack hpack
|
|
~/.local/bin/feedback --help
|
|
|
|
test:
|
|
description: Work on `feedback-test`
|
|
script: |
|
|
stack install :feedback-test \
|
|
--fast --no-nix --system-ghc --with-hpack hpack
|
|
~/.local/bin/feedback-test --debug ci
|