Files
vim-table-mode/.github/workflows/ci.yml
Dhruva Sagar f5df58b089 Try again
2023-03-01 11:04:33 +05:30

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