Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,15 @@ jobs:
experimental: true
github_token: ${{ secrets.GITHUB_TOKEN }}

- name: Install xcsift via mise
run: |
./bin/mise install xcsift
# Find and add xcsift binary to PATH
XCSIFT_PATH=$(./bin/mise where xcsift)
echo "$XCSIFT_PATH" >> $GITHUB_PATH
echo "xcsift installed at: $XCSIFT_PATH"
ls -la "$XCSIFT_PATH"

- name: Show Swift version
run: swift --version

Expand Down
Loading