Skip to content

Commit

Permalink
fix: tap
Browse files Browse the repository at this point in the history
  • Loading branch information
fredrikaverpil committed May 18, 2024
1 parent bc7c3a6 commit 03e9351
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 7 deletions.
10 changes: 4 additions & 6 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
---
name: CI
on:
push:
Expand All @@ -15,7 +14,7 @@ jobs:
fail-fast: false
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Create workfolder
run: |
mkdir -p ~/dotfiles-install-dir
Expand All @@ -25,17 +24,17 @@ jobs:
- name: Show dotfiles
run: |
ls -alh ~/dotfiles-install-dir
- name: Test homebrew installer
run: |
HOME=~/dotfiles-install-dir installers/homebrew.sh
- name: Test Brewfile install (macos)
run: brew bundle --file=_macos/Brewfile --verbose
run: |
brew upgrade
brew bundle --file=_macos/Brewfile --verbose
if: runner.os == 'macOS'
- name: Test Brewfile install (linux)
run: /home/linuxbrew/.linuxbrew/bin/brew bundle --file=_linux/Brewfile --verbose
if: runner.os == 'linux'

- name: Test Python installer + setup
run: |
echo $PYENV_ROOT
Expand All @@ -51,7 +50,6 @@ jobs:
env:
PYENV_ROOT: /home/runner/dotfiles-install-dir/.pyenv
if: runner.os == 'Linux'

- name: Test docker installer
run: |
HOME=~/dotfiles-install-dir installers/docker.sh
Expand Down
1 change: 1 addition & 0 deletions _linux/Brewfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@

# Taps (third-party repositories)
tap 'homebrew/linux-fonts'
tap 'pkgxdev/made'

# system
brew 'zsh-autosuggestions'
Expand Down
5 changes: 4 additions & 1 deletion _macos/Brewfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,11 @@
cask_args appdir: '/Applications'

# Taps (third-party repositories)
tap 'homebrew/cask-fonts'
tap 'homebrew/cask'
tap 'koekeishiya/formulae' # yabai
tap 'pkgxdev/made'
tap 'dustinblackman/tap'
tap 'go-task/tap'

# system
brew 'zsh-autosuggestions'
Expand Down

0 comments on commit 03e9351

Please sign in to comment.