This repository has no description
0

Configure Feed

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

ci: don't build -shell attrs

+8 -1
+8 -1
.github/workflows/ci.yml
··· 16 16 id: list 17 17 run: | 18 18 eval "$(nix print-dev-env .#ci)" 19 - matrix=$(nix-eval-jobs --flake .#checks.x86_64-linux --check-cache-status | jq -sc '[.[]|select(.isCached|not).attr]' | jq -c 'if length > 0 then . else ["pre-commit"] end') 19 + matrix="$(nix-eval-jobs --flake .#checks.x86_64-linux --check-cache-status | jq -sc ' 20 + [ 21 + .[] 22 + | select(.isCached | not).attr 23 + | select(test("-shell$") | not) 24 + ] 25 + | if length > 0 then . else ["pre-commit"] end 26 + ')" 20 27 echo "matrix=$matrix" >> "$GITHUB_OUTPUT" 21 28 22 29 build: