summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorJunegunn Choi <junegunn.c@gmail.com>2025-01-25 19:57:40 +0900
committerGitHub <noreply@github.com>2025-01-25 19:57:40 +0900
commit0237bf09bf1fe70d94727b040ac39110f56b497f (patch)
treed32061f165f8bd0ba39ef3123623e16be2afe8a1 /.github
parent04017c25bb719c31bb18d43b4bcb96c4736f8d91 (diff)
downloadfzf-0237bf09bf1fe70d94727b040ac39110f56b497f.tar.gz
Split integration test file (#4205)
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/linux.yml8
1 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml
index e4117238..7e58bb49 100644
--- a/.github/workflows/linux.yml
+++ b/.github/workflows/linux.yml
@@ -30,19 +30,19 @@ jobs:
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
- ruby-version: 3.1.0
+ ruby-version: 3.4.1
- name: Install packages
run: sudo apt-get install --yes zsh fish tmux
- name: Install Ruby gems
- run: sudo gem install --no-document minitest:5.25.1 rubocop:1.65.0 rubocop-minitest:0.35.1 rubocop-performance:1.21.1
+ run: bundle install
- name: Rubocop
- run: rubocop --require rubocop-minitest --require rubocop-performance
+ run: make lint
- name: Unit test
run: make test
- name: Integration test
- run: make install && ./install --all && tmux new-session -d && ruby test/test_go.rb --verbose
+ run: make install && ./install --all && tmux new-session -d && ruby test/runner.rb --verbose