dotfiles/.github/workflows/test.yaml

25 lines
512 B
YAML
Raw Normal View History

2020-06-29 16:00:46 +00:00
on: [push]
name: CI
jobs:
build_and_test:
runs-on: macos-latest
steps:
- uses: actions/checkout@master
2020-06-29 16:05:51 +00:00
with:
path: Code
- name: Mimic
shell: bash
run: |
ln -snf Code ~/Code
echo ~/Code
2020-06-29 16:00:46 +00:00
- name: Run bootstrap
shell: bash
run: |
~/Code/dotfiles/dot_scripts/bootstrap.sh
2020-06-29 16:00:46 +00:00
env:
REPO: ${{github.workspace}}
DOTFILES_REF: ${{github.sha}}
HOMEBREW_BUNDLE_BREW_SKIP: "node"