diff --git a/workflows/build.yml b/workflows/build.yml new file mode 100644 index 0000000..aae9ade --- /dev/null +++ b/workflows/build.yml @@ -0,0 +1,20 @@ +when: + - event: ["push", "manual"] + +engine: "nixery" + +dependencies: + nixpkgs: + - coreutils + - findutils + - gnugrep + +steps: + - name: "Inspect workspace" + command: "pwd && find . -maxdepth 3 -type f | sort" + + - name: "Check markdown files" + command: "find . -name '*.md' -type f | grep ." + + - name: "Build placeholder" + command: "printf 'works'"