Skip to content

Commit

Permalink
Add simple test
Browse files Browse the repository at this point in the history
  • Loading branch information
jryom committed Dec 13, 2023
1 parent db0ac2f commit d9f91c2
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 2 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: CI

on:
push:

concurrency:
group: ${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true

jobs:
install:
name: Fresh install
runs-on: macos-latest
steps:
- name: Check out repository
uses: actions/checkout@v3

- name: Runs install script
run: ./install.sh
6 changes: 4 additions & 2 deletions justfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ homebrew:
/bin/bash -c "NONINTERACTIVE=1 $(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"

brew:
#!/usr/bin/env fish
brew bundle install --file="{{ justfile_directory() }}/etc/Brewfile" --force --no-lock

gh:
Expand All @@ -30,6 +29,7 @@ pnpm:
pnpm add --global (cat "{{ justfile_directory() }}/etc/global_node_modules")
pip:
#!/usr/bin/env fish
pip install --user --upgrade $(cat "{{ justfile_directory() }}/etc/pip_packages" | tr "\n" " ")
misc:
Expand All @@ -39,9 +39,11 @@ misc:
sudo bash -c "echo '$(whoami) ALL=(root) NOPASSWD: sha256:$(shasum -a 256 $(which yabai) | cut -d " " -f 1) $(which yabai) --load-sa' > /private/etc/sudoers.d/yabai"

fisher:
fish -c 'fisher update'
#!/usr/bin/env fish
fisher update
virtualfish:
#!/usr/bin/env fish
vf install auto_activation
fish-globals:
Expand Down

0 comments on commit d9f91c2

Please sign in to comment.