From 7f23c02ec7e4b2b0d72b8bfe483f4fa3781a03c3 Mon Sep 17 00:00:00 2001 From: aereal Date: Mon, 20 Jan 2020 15:31:26 +0900 Subject: [PATCH] run CI --- .github/workflows/ci.yml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..d537d22 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,27 @@ +--- + +name: CI +on: + pull_request: + push: + branches: + - master +jobs: + test: + runs-on: macos-latest + steps: + - uses: actions/checkout@v2 + - name: install config files + run: | + ln -sfv $PWD/.zshenv ~/ + ln -sfv $PWD/.zshrc ~/ + ln -sfv $PWD/.zsh.d ~/ + ln -sfv $PWD/.tmux.conf ~/ + ln -sfv $PWD/.tmux.d ~/ + - name: install software + run: | + brew update + brew install tmux reattach-to-user-namespace zsh zsh-completions zsh-history-substring-search zsh-syntax-highlighting + - name: dump env + run: | + /usr/local/bin/zsh -c 'env'