👍 add mysql workbench for mac #132
This file contains 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 dotfile setup on MacOS | |
on: | |
push: | |
branches: [ "main", "develop" ] | |
pull_request: | |
branches: [ "main", "develop" ] | |
jobs: | |
shellcheck: | |
name: Shellcheck | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Run ShellCheck | |
uses: ludeeus/action-shellcheck@master | |
with: | |
ignore_paths: >- | |
linux/.config | |
.github | |
.local | |
linux/.psensor | |
ignore_names: >- | |
.bash_logout | |
.zshrc | |
.p10k.zsh | |
buildtest: | |
name: Build and test dotfiles | |
needs: shellcheck | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set environment variables | |
run: | | |
echo "ACCEPT_INSTALL=y" >> $GITHUB_ENV | |
- name: Run dotfiles install and test script | |
run: | | |
set -e | |
export CI=1 | |
git submodule update --init | |
bash install.sh |