2021-01-13 10:52:15 +09:00
|
|
|
---
|
|
|
|
name: Test fzf on Linux
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: [ master, devel ]
|
|
|
|
pull_request:
|
|
|
|
branches: [ master ]
|
2021-10-04 14:41:54 +02:00
|
|
|
workflow_dispatch:
|
2021-01-13 10:52:15 +09:00
|
|
|
|
2022-03-29 07:08:01 -05:00
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
|
2021-01-13 10:52:15 +09:00
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2022-03-29 07:08:01 -05:00
|
|
|
- uses: actions/checkout@629c2de402a417ea7690ca6ce3f33229e27606a5 # v2
|
2021-01-13 10:52:15 +09:00
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
|
|
|
|
|
|
|
- name: Set up Go
|
2022-03-29 21:17:44 +09:00
|
|
|
uses: actions/setup-go@f6164bd8c8acb4a71fb2791a8b6c4024ff038dab # v2
|
2021-01-13 10:52:15 +09:00
|
|
|
with:
|
2022-03-29 21:20:33 +09:00
|
|
|
go-version: 1.18
|
2021-01-13 10:52:15 +09:00
|
|
|
|
|
|
|
- name: Setup Ruby
|
2022-04-22 22:35:51 +09:00
|
|
|
uses: ruby/setup-ruby@ebaea52cb20fea395b0904125276395e37183dac
|
2021-01-13 10:52:15 +09:00
|
|
|
with:
|
|
|
|
ruby-version: 3.0.0
|
|
|
|
|
|
|
|
- name: Install packages
|
2021-03-07 22:41:27 +09:00
|
|
|
run: sudo apt-get install --yes zsh fish tmux
|
2021-01-13 10:52:15 +09:00
|
|
|
|
|
|
|
- name: Install Ruby gems
|
|
|
|
run: sudo gem install --no-document minitest:5.14.2 rubocop:1.0.0 rubocop-minitest:0.10.1 rubocop-performance:1.8.1
|
|
|
|
|
|
|
|
- name: Rubocop
|
|
|
|
run: rubocop --require rubocop-minitest --require rubocop-performance
|
|
|
|
|
|
|
|
- name: Unit test
|
|
|
|
run: make test
|
|
|
|
|
|
|
|
- name: Integration test
|
|
|
|
run: make install && ./install --all && LC_ALL=C tmux new-session -d && ruby test/test_go.rb --verbose
|