aboutsummaryrefslogtreecommitdiffstats
path: root/.github/workflows
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows')
-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