mirror of
https://github.com/mattn/emmet-vim.git
synced 2026-03-27 23:14:32 +08:00
27 lines
525 B
YAML
27 lines
525 B
YAML
name: Test
|
|
|
|
on:
|
|
push:
|
|
branches: [master]
|
|
pull_request:
|
|
branches: [master]
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
vim:
|
|
- head
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: thinca/action-setup-vim@v2
|
|
with:
|
|
vim_version: ${{ matrix.vim }}
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
repository: thinca/vim-themis
|
|
path: vim-themis
|
|
- name: Run tests
|
|
run: ./vim-themis/bin/themis --runtimepath . test/
|