diff options
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/test.yml | 28 |
1 files changed, 4 insertions, 24 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index aaec37bf..3aef9cdc 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -16,38 +16,18 @@ jobs: sudo apt update && sudo apt install -y ninja-build \ gettext \ - libtool \ - libtool-bin \ - autoconf \ - automake \ cmake \ g++ \ - pkg-config \ - unzip \ - gperf \ - libluajit-5.1-dev \ - libunibilium-dev \ - libmsgpack-dev \ - libtermkey-dev \ - libvterm-dev \ - libjemalloc-dev \ - lua5.1 \ - lua-lpeg \ - lua-mpack \ - lua-bitop + unzip - name: Run test with building Nvim - run: | - make test + run: make test macos: runs-on: macos-latest steps: - name: Checkout sources uses: actions/checkout@v3 - name: Setup build dependencies - run: | - /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)" && - brew install ninja libtool automake pkg-config gettext + run: brew install ninja - name: Run test with building Nvim - run: | - make test + run: make test |
