X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/881e1b5f9af2883788c902ee40c5b76d8c73a948..4e696e9d4822acb0b042c5a76862720056debd89:/.vim/bundle/asyncomplete/.github/workflows/mac_neovim.yml diff --git a/.vim/bundle/asyncomplete/.github/workflows/mac_neovim.yml b/.vim/bundle/asyncomplete/.github/workflows/mac_neovim.yml new file mode 100644 index 00000000..894b636e --- /dev/null +++ b/.vim/bundle/asyncomplete/.github/workflows/mac_neovim.yml @@ -0,0 +1,44 @@ +name: mac_neovim + +on: + push: + branches: + - master + pull_request: + branches: + - master + +jobs: + build: + strategy: + fail-fast: false + matrix: + os: [macos-latest] + name: [neovim-v04-x64,neovim-nightly-x64] + include: + - name: neovim-v04-x64 + os: macos-latest + neovim_version: v0.4.3 + - name: neovim-nightly-x64 + os: macos-latest + neovim_version: nightly + runs-on: ${{matrix.os}} + steps: + - uses: actions/checkout@v4 + - name: Download neovim + shell: bash + run: curl -L https://github.com/neovim/neovim/releases/download/${{matrix.neovim_version}}/nvim-macos.tar.gz -o ~/nvim.tar.gz + - name: Extract neovim + shell: bash + run: tar xzf ~/nvim.tar.gz -C ~/ + - name: Download test runner + shell: bash + run: git clone --depth 1 --branch v1.5.4 --single-branch https://github.com/thinca/vim-themis ~/themis + - name: Run tests + shell: bash + run: | + export PATH=~/nvim-osx64/bin:$PATH + export PATH=~/themis/bin:$PATH + export THEMIS_VIM=nvim + nvim --version + themis --reporter spec