2021-01-13 01:52:15 +00:00
|
|
|
---
|
|
|
|
name: Test fzf on Linux
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: [ master, devel ]
|
|
|
|
pull_request:
|
|
|
|
branches: [ master ]
|
2021-10-04 12:41:54 +00:00
|
|
|
workflow_dispatch:
|
2021-01-13 01:52:15 +00:00
|
|
|
|
2022-03-29 12:08:01 +00:00
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
|
2021-01-13 01:52:15 +00:00
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2022-03-29 12:08:01 +00:00
|
|
|
- uses: actions/checkout@629c2de402a417ea7690ca6ce3f33229e27606a5 # v2
|
2021-01-13 01:52:15 +00:00
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
|
|
|
|
|
|
|
- name: Set up Go
|
2022-03-29 12:17:44 +00:00
|
|
|
uses: actions/setup-go@f6164bd8c8acb4a71fb2791a8b6c4024ff038dab # v2
|
2021-01-13 01:52:15 +00:00
|
|
|
with:
|
2022-08-12 13:11:15 +00:00
|
|
|
go-version: 1.19
|
2021-01-13 01:52:15 +00:00
|
|
|
|
|
|
|
- name: Setup Ruby
|
2022-04-22 13:35:51 +00:00
|
|
|
uses: ruby/setup-ruby@ebaea52cb20fea395b0904125276395e37183dac
|
2021-01-13 01:52:15 +00:00
|
|
|
with:
|
|
|
|
ruby-version: 3.0.0
|
|
|
|
|
|
|
|
- name: Install packages
|
2021-03-07 13:41:27 +00:00
|
|
|
run: sudo apt-get install --yes zsh fish tmux
|
2021-01-13 01:52:15 +00: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
|