fzf/.travis.yml

29 lines
685 B
YAML
Raw Normal View History

language: go
2020-07-27 00:00:54 +00:00
go:
- "1.14"
env: GO111MODULE=on
os:
- linux
- osx
2020-04-17 17:34:38 +00:00
dist: bionic
addons:
apt:
packages:
- fish
- zsh
2020-04-17 17:34:38 +00:00
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