diff options
| author | Hirokazu Hata <h.hata.ai.t@gmail.com> | 2020-05-21 17:30:04 +0900 |
|---|---|---|
| committer | Hirokazu Hata <h.hata.ai.t@gmail.com> | 2020-05-21 17:36:30 +0900 |
| commit | 3642d95150fc82a33e29adf25787dca0a197edbb (patch) | |
| tree | b6bae28ac8c4573b38597c393158f8c695e41af8 /.github/workflows | |
| parent | test: add some test cases util functions (diff) | |
| download | nvim-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')
| -rw-r--r-- | .github/workflows/test.yml | 14 |
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 |
