Skip to content

Commit

Permalink
Merge pull request #16 from lambdalisue/fix-gha
Browse files Browse the repository at this point in the history
Fix GitHub Action failure
  • Loading branch information
lambdalisue authored Oct 22, 2022
2 parents ee07f3e + a5c954c commit 76e4e06
Show file tree
Hide file tree
Showing 3 changed files with 45 additions and 89 deletions.
44 changes: 0 additions & 44 deletions .github/workflows/neovim.yml

This file was deleted.

45 changes: 45 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
name: test

on:
push:
branches:
- master
pull_request:
branches:
- master

jobs:
build:
strategy:
fail-fast: false
matrix:
os:
- macos-latest
- windows-latest
- ubuntu-latest
host:
- vim_type: Vim
version: head
- vim_type: Vim
version: v8.1.2424
- vim_type: Neovim
version: head
- vim_type: Neovim
version: v0.4.3
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v3
with:
repository: thinca/vim-themis
path: vim-themis
- uses: thinca/action-setup-vim@v1
id: vim
with:
vim_type: ${{ matrix.host.vim_type }}
vim_version: ${{ matrix.host.version }}
- name: Run tests
env:
THEMIS_VIM: ${{ steps.vim.outputs.executable }}
run: |
./vim-themis/bin/themis
45 changes: 0 additions & 45 deletions .github/workflows/vim.yml

This file was deleted.

0 comments on commit 76e4e06

Please sign in to comment.