This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

add workflow

Smit Patil (Jul 13, 2026, 5:52 PM EDT) abf6fb9c a87f026f

+20
+20
workflows/build.yml
··· 1 + when: 2 + - event: ["push", "manual"] 3 + 4 + engine: "nixery" 5 + 6 + dependencies: 7 + nixpkgs: 8 + - coreutils 9 + - findutils 10 + - gnugrep 11 + 12 + steps: 13 + - name: "Inspect workspace" 14 + command: "pwd && find . -maxdepth 3 -type f | sort" 15 + 16 + - name: "Check markdown files" 17 + command: "find . -name '*.md' -type f | grep ." 18 + 19 + - name: "Build placeholder" 20 + command: "printf 'works'"