Skip to content

Commit

Permalink
Added new step
Browse files Browse the repository at this point in the history
  • Loading branch information
bhanu-lab committed Dec 29, 2024
1 parent c0be589 commit 07efcc5
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/validate-macsetup.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,15 @@ jobs:
else
echo "jq is already installed."
fi
- name: Check if tools.json exists
run: |
macsetup_dir="$HOME/.macsetup"
if [ ! -f "$macsetup_dir/tools.json" ]; then
echo "tools.json not found in $macsetup_dir"
exit 1
else
echo "tools.json found."
fi
- name: Validate installation
run: |
# Read validation commands from config/tools.json and run them
Expand Down

0 comments on commit 07efcc5

Please sign in to comment.