2021-01-13 01:52:15 +00:00
|
|
|
---
|
|
|
|
name: Test fzf on macOS
|
|
|
|
|
|
|
|
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: macos-latest
|
|
|
|
steps:
|
2024-03-05 02:48:46 +00:00
|
|
|
- uses: actions/checkout@v4
|
2021-01-13 01:52:15 +00:00
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
|
|
|
|
|
|
|
- name: Set up Go
|
2023-12-19 01:50:47 +00:00
|
|
|
uses: actions/setup-go@v5
|
2021-01-13 01:52:15 +00:00
|
|
|
with:
|
2024-04-01 16:47:24 +00:00
|
|
|
go-version: "1.20"
|
2021-01-13 01:52:15 +00:00
|
|
|
|
|
|
|
- name: Setup Ruby
|
2022-10-24 11:07:31 +00:00
|
|
|
uses: ruby/setup-ruby@v1
|
2021-01-13 01:52:15 +00:00
|
|
|
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
|