2021-01-13 01:52:15 +00:00
|
|
|
---
|
|
|
|
name: Test fzf on macOS
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: [ master, devel ]
|
|
|
|
pull_request:
|
|
|
|
branches: [ master ]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: macos-latest
|
|
|
|
strategy:
|
|
|
|
matrix:
|
2021-03-20 03:32:44 +00:00
|
|
|
go: [1.14, 1.16]
|
2021-01-13 01:52:15 +00:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
|
|
|
|
|
|
|
- name: Set up Go
|
|
|
|
uses: actions/setup-go@v2
|
|
|
|
with:
|
|
|
|
go-version: ${{ matrix.go }}
|
|
|
|
|
|
|
|
- name: Setup Ruby
|
|
|
|
uses: ruby/setup-ruby@v1.62.0
|
|
|
|
with:
|
|
|
|
ruby-version: 3.0.0
|
|
|
|
|
|
|
|
- name: Install packages
|
|
|
|
run: HOMEBREW_NO_INSTALL_CLEANUP=1 brew install fish zsh tmux
|
|
|
|
|
|
|
|
- name: Install Ruby gems
|
|
|
|
run: 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
|