Skip to content

feat(vim): add nvim-spider and guess-indent plugins #91

feat(vim): add nvim-spider and guess-indent plugins

feat(vim): add nvim-spider and guess-indent plugins #91

Workflow file for this run

---
name: macos
on:
push:
branches:
- "master"
paths:
- "config/**"
- "scripts/**"
- ".github/workflows/macos.yaml"
- "!**.md"
- "!.github/mkdocs.yaml"
- "!docs/**"
jobs:
macos:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest]
steps:
- name: Clean up installed software
if: startsWith(matrix.os, 'macos')
run: |
brew uninstall --ignore-dependencies --force $(brew list --formula)
brew uninstall --cask --force firefox google-chrome
brew cleanup --prune-prefix
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/uninstall.sh)"
# - name: Download and install available system updates
# if: startsWith(matrix.os, 'macos')
# run: |
# sudo softwareupdate -i -a
- name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
- name: Install using setup.sh
run: |
if [ "$RUNNER_OS" == "macOS" ]; then
./scripts/setup.sh --all
fi
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}