File tree 2 files changed +29
-4
lines changed
2 files changed +29
-4
lines changed Original file line number Diff line number Diff line change
1
+ name : CI
2
+ on : [push, pull_request]
3
+
4
+ jobs :
5
+ unit-tests :
6
+ name : Unit tests
7
+ strategy :
8
+ matrix :
9
+ os : [ubuntu-latest]
10
+ runs-on : ${{ matrix.os }}
11
+ steps :
12
+ - run : sudo apt install -y --no-install-recommends clang-format
13
+ if : ${{ matrix.os == 'ubuntu-latest' }}
14
+ - uses : actions/checkout@v2
15
+ - uses : ruby/setup-ruby@v1
16
+ with :
17
+ ruby-version : 3
18
+ bundler-cache : true
19
+ - uses : rhysd/action-setup-vim@v1
20
+ - name : Run unit tests
21
+ run : |
22
+ cd ./test
23
+ bundle --version
24
+ bundle install
25
+ bundle exec vim-flavor test
Original file line number Diff line number Diff line change 1
1
GEM
2
2
remote: https://rubygems.org/
3
3
specs:
4
- parslet (1.8.1 )
5
- thor (0.20.0 )
4
+ parslet (1.8.2 )
5
+ thor (0.20.3 )
6
6
vim-flavor (1.1.5 )
7
7
parslet (~> 1.0 )
8
8
thor (~> 0.14 )
9
9
10
10
PLATFORMS
11
- ruby
11
+ x86_64-darwin-19
12
12
13
13
DEPENDENCIES
14
14
vim-flavor (~> 1.1 )
15
15
16
16
BUNDLED WITH
17
- 1.11.2
17
+ 2.2.22
You can’t perform that action at this time.
0 commit comments