From 3642d95150fc82a33e29adf25787dca0a197edbb Mon Sep 17 00:00:00 2001 From: Hirokazu Hata Date: Thu, 21 May 2020 17:30:04 +0900 Subject: github action: add test for macos --- .github/workflows/test.yml | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) (limited to '.github/workflows') 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 -- cgit v1.3.1