Skip to content

Commit

Permalink
Add CI
Browse files Browse the repository at this point in the history
  • Loading branch information
kyohsuke committed Dec 3, 2023
1 parent 2dc4b9f commit 874b496
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 5 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
---
name: CI
on: [push]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v4

- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
bundler-cache: true

- name: Setup Vim
uses: rhysd/action-setup-vim@v1

- name: test
run: rake ci
1 change: 1 addition & 0 deletions .ruby-version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
3.2.2
5 changes: 3 additions & 2 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
source "https://rubygems.org"
gem 'vim-flavor'
source 'https://rubygems.org'

gem 'rake'
gem 'vim-flavor'
6 changes: 3 additions & 3 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ GEM
parslet (2.0.0)
pastel (0.8.0)
tty-color (~> 0.5)
rake (13.0.6)
thor (1.2.1)
rake (13.1.0)
thor (1.3.0)
tty-color (0.6.0)
vim-flavor (4.0.2)
parslet (>= 1.8, < 3.0)
Expand All @@ -20,4 +20,4 @@ DEPENDENCIES
vim-flavor

BUNDLED WITH
2.4.4
2.4.22

0 comments on commit 874b496

Please sign in to comment.