Split integration test file #2463
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: Test fzf on Linux | |
on: | |
push: | |
branches: [ master, devel ] | |
pull_request: | |
branches: [ master ] | |
workflow_dispatch: | |
permissions: | |
contents: read | |
env: | |
LANG: C.UTF-8 | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: "1.20" | |
- name: Setup Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: 3.4.1 | |
- name: Install packages | |
run: sudo apt-get install --yes zsh fish tmux | |
- name: Install Ruby gems | |
run: bundle install | |
- name: Rubocop | |
run: make lint | |
- name: Unit test | |
run: make test | |
- name: Integration test | |
run: make install && ./install --all && tmux new-session -d && ruby test/runner.rb --verbose |