🗄 chore: Move micro package
#233
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Test macOS features | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| jobs: | |
| macOS: | |
| runs-on: macos-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| features: [ | |
| "ansible", | |
| "clean", | |
| "cli-network", | |
| "core", | |
| # "git", # CI machine contains existed .gitconfig file | |
| "javascript", | |
| # "macos-alfred", # Script error to be fixed | |
| # "macos-app-dev", # Depends on `git` | |
| # "macos-app-private", # Depends on `git` | |
| # "macos-app-work", # Depends on `git` | |
| "macos-appcleaner", | |
| "macos-brew", | |
| "macos-clean", | |
| # "macos-cleanshot", # Script error to be fixed | |
| "macos-cli-network", | |
| "macos-cli-useful", | |
| "macos-core", | |
| "macos-docker", | |
| "macos-duti", | |
| "macos-file-handler", | |
| "macos-finder", | |
| "macos-font", | |
| "macos-git", | |
| "macos-hammerspoon", | |
| "macos-icon", | |
| "macos-iterm", | |
| "macos-javascript", | |
| "macos-markedit", | |
| "macos-micro", | |
| "macos-nano", | |
| # "macos-one-password", # mas can't run without login on GitHub Actions | |
| # "macos-perl", # Script error to be fixed | |
| "macos-popclip", | |
| "macos-quicklook", | |
| "macos-screensaver", | |
| "macos-service-workflow", | |
| # "macos-settings", # Script error to be fixed | |
| "macos-shellcheck", | |
| "macos-stow", | |
| # "macos-sublime", # Script error to be fixed | |
| # "macos-terminal", # Dracula theme upstream error, see https://github.com/dracula/homebrew-install/pull/18 | |
| "macos-touch-id-sudo", | |
| "macos-tower", | |
| # "macos-xcode", # mas can't run without login on GitHub Actions | |
| "macos-zsh", | |
| "micro", | |
| "nano", | |
| "python", | |
| "stow", | |
| "zsh", | |
| ] | |
| steps: | |
| - name: 🛒 Checkout | |
| uses: actions/checkout@v4 | |
| - name: 🧪 Test "${{ matrix.features }}" | |
| run: make ${{ matrix.features }} |