Skip to content

Commit

Permalink
Migrate to GitHub actions
Browse files Browse the repository at this point in the history
  • Loading branch information
adriaanzon committed Mar 22, 2024
1 parent d1cdd34 commit 89408fa
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 13 deletions.
11 changes: 0 additions & 11 deletions .circleci/config.yml

This file was deleted.

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

on: [push, pull_request]

jobs:
tests:
strategy:
matrix:
version: [stable, nightly]
neovim: [true, false]
name: ${{ matrix.neovim && 'neovim' || 'vim' }} ${{ matrix.version }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: rhysd/action-setup-vim@v1
with:
version: ${{ matrix.version }}
neovim: ${{ matrix.neovim }}
- run: make test
if: ${{ !matrix.neovim }}
- run: make test-nvim
if: ${{ matrix.neovim }}
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# vim-textobj-matchit [![CircleCI](https://circleci.com/gh/adriaanzon/vim-textobj-matchit.svg?style=svg)](https://circleci.com/gh/adriaanzon/vim-textobj-matchit)
# vim-textobj-matchit

A Vim plugin that creates text objects from matchit pairs, to be used with:

Expand Down
2 changes: 1 addition & 1 deletion test/vimrc
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
set nocompatible

runtime macros/matchit.vim
packadd! matchit

let &packpath = expand('<sfile>:p:h:h')

Expand Down

0 comments on commit 89408fa

Please sign in to comment.