mirror of
https://github.com/Llewellynvdm/fzf.git
synced 2024-11-11 16:15:46 +00:00
a6d3e3687b
* Add RuboCop Minitest extension * Improve error messages * Use chomp option
27 lines
670 B
YAML
27 lines
670 B
YAML
language: go
|
|
env: GO111MODULE=on
|
|
os:
|
|
- linux
|
|
- osx
|
|
dist: bionic
|
|
addons:
|
|
apt:
|
|
packages:
|
|
- fish
|
|
- zsh
|
|
sources:
|
|
sourceline: ppa:fish-shell/release-3
|
|
homebrew:
|
|
packages:
|
|
- fish
|
|
- tmux
|
|
update: true
|
|
install: gem install minitest rubocop rubocop-minitest rubocop-performance
|
|
script:
|
|
- make test
|
|
# LC_ALL=C to avoid escape codes in
|
|
# printf %q $'\355\205\214\354\212\244\355\212\270' on macOS. Bash on
|
|
# macOS is built without HANDLE_MULTIBYTE?
|
|
- make install && ./install --all && LC_ALL=C tmux new-session -d && ruby test/test_go.rb --verbose
|
|
- rubocop --require rubocop-minitest --require rubocop-performance
|