dotfiles/.github/workflows/test.yaml
2020-06-29 18:45:59 +02:00

22 lines
478 B
YAML

on: [push]
name: CI
jobs:
build_and_test:
runs-on: macos-latest
steps:
- uses: actions/checkout@master
- name: Mimic
shell: bash
run: |
ln -snf /Users/runner/work/dotfiles ~/Code
- name: Run bootstrap
shell: bash
run: |
~/Code/dotfiles/dot_scripts/bootstrap.sh
env:
REPO: ${{github.workspace}}
DOTFILES_REF: ${{github.sha}}
HOMEBREW_BUNDLE_BREW_SKIP: "node"