Skip to content

Commit

Permalink
add workflow for vim9
Browse files Browse the repository at this point in the history
  • Loading branch information
pit-ray committed Aug 20, 2023
1 parent 53deb2f commit 1cf494d
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions .github/workflows/test-vim9.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
name: test-vim9

on:
push:
branches: [vim9]
tags:
- v*.*.*
paths:
- '!README.md'
- '!.gitignore'
- '!LICENSE'
- '!doc/**'
- '.github/**'
- 'autoload/**'
- 'tests/**'
- 'examples/**'

pull_request:
branches: [vim9]

jobs:
test-on-Ubuntu:
runs-on: ubuntu-20.04

steps:
- uses: actions/checkout@v2

- name: Build latest Vim
run: |
git clone https://github.com/vim/vim.git --depth=1 -j 4
cd vim
mkdir $HOME/local
./configure --prefix=$HOME/local
make -j4
make install
- name: Test
run: $HOME/local/bin/vim -S tests/test.vim ; cat test.log

0 comments on commit 1cf494d

Please sign in to comment.