aboutsummaryrefslogtreecommitdiffstats
path: root/.github/workflows/test.yml
diff options
context:
space:
mode:
authorHirokazu Hata <h.hata.ai.t@gmail.com>2020-05-21 17:30:04 +0900
committerHirokazu Hata <h.hata.ai.t@gmail.com>2020-05-21 17:36:30 +0900
commit3642d95150fc82a33e29adf25787dca0a197edbb (patch)
treeb6bae28ac8c4573b38597c393158f8c695e41af8 /.github/workflows/test.yml
parenttest: add some test cases util functions (diff)
downloadnvim-lspconfig-3642d95150fc82a33e29adf25787dca0a197edbb.tar
nvim-lspconfig-3642d95150fc82a33e29adf25787dca0a197edbb.tar.gz
nvim-lspconfig-3642d95150fc82a33e29adf25787dca0a197edbb.tar.bz2
nvim-lspconfig-3642d95150fc82a33e29adf25787dca0a197edbb.tar.lz
nvim-lspconfig-3642d95150fc82a33e29adf25787dca0a197edbb.tar.xz
nvim-lspconfig-3642d95150fc82a33e29adf25787dca0a197edbb.tar.zst
nvim-lspconfig-3642d95150fc82a33e29adf25787dca0a197edbb.zip
github action: add test for macos
Diffstat (limited to '.github/workflows/test.yml')
-rw-r--r--.github/workflows/test.yml14
1 files changed, 13 insertions, 1 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index 31bcef39..ff3c9e68 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -6,7 +6,7 @@ on:
- master
jobs:
- test:
+ ubuntu:
runs-on: [ubuntu-latest]
steps:
- name: Checkout sources
@@ -38,4 +38,16 @@ jobs:
- name: Run test with building Nvim
run: |
make test
+ macos:
+ runs-on: [macos-latest]
+ steps:
+ - name: Checkout sources
+ uses: actions/checkout@v2
+ - name: Setup build dependencies
+ run: |
+ /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)" &&
+ brew install ninja libtool automake cmake pkg-config gettext
+ - name: Run test with building Nvim
+ run: |
+ make test