mirror of
https://github.com/dhruvasagar/vim-table-mode.git
synced 2025-11-16 23:13:39 -05:00
37 lines
804 B
YAML
37 lines
804 B
YAML
name: CI
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
- feature/switch-to-vim-testify
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
- feature/switch-to-vim-testify
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
tests:
|
|
name: Vim Table Mode Tests
|
|
runs-on: ubuntu-latest
|
|
container:
|
|
image: alpine:latest
|
|
steps:
|
|
- name: Install git & vim
|
|
run: apk --no-cache add vim
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Checkout vim-testify
|
|
uses: actions/checkout@v3
|
|
with:
|
|
repository: dhruvasagar/vim-testify
|
|
path: vim-testify
|
|
|
|
- name: Run unit tests
|
|
run: vim +"set packpath+=${{ github.workspace }}/vim-table-mode,${{ github.workspace }}/vim-testify" +TestifySuite
|