diff options
author | Franck Cuny <franck@fcuny.net> | 2022-06-10 13:48:42 -0700 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2022-06-10 13:56:50 -0700 |
commit | dbc26c72e6c7de7c8737154f47df6da7c760efd3 (patch) | |
tree | 7e87286985626ad8028a1854c6835de8cc948259 /ops | |
parent | fix(scripts): no need to create tags when deploying to fly.io (diff) | |
download | world-dbc26c72e6c7de7c8737154f47df6da7c760efd3.tar.gz |
ci(default): add `apps.ci.shellcheck` to flake.nix
I can now run `nix run .#ci.shellcheck` to validate the shell scripts with shellcheck in the repository. The pipeline in buildKite will need to be updated. Change-Id: Ia52ede86adfa58c9615b0f9e290ef5d5b8adb303 Reviewed-on: https://cl.fcuny.net/c/world/+/409 Tested-by: CI Reviewed-by: Franck Cuny <franck@fcuny.net>
Diffstat (limited to 'ops')
-rw-r--r-- | ops/ci/default.nix | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/ops/ci/default.nix b/ops/ci/default.nix new file mode 100644 index 0000000..be0c607 --- /dev/null +++ b/ops/ci/default.nix @@ -0,0 +1,6 @@ +{ pkgs }: + +{ + fmt = import ./fmt.nix pkgs; + shell = import ./shellcheck.nix pkgs; +} |