colorls/.travis.yml

38 lines
616 B
YAML
Raw Normal View History

2017-06-29 19:14:41 +02:00
language:
ruby
rvm:
- '2.1'
- '2.2'
- '2.3.0'
- '2.4.0'
script:
- bundle exec rubocop
- bundle exec rspec
2017-07-05 18:50:49 +02:00
- rake install
2017-07-07 16:55:38 +02:00
- colorls
2017-07-12 18:45:12 +02:00
- colorls -1
2017-07-07 18:28:10 +02:00
- colorls -a
- colorls -A
2017-07-07 16:55:38 +02:00
- colorls -d
- colorls -f
2017-07-12 18:45:12 +02:00
- colorls -l
2017-07-12 18:46:22 +02:00
- colorls -l spec/fixtures/symlinks
- ( cd spec/fixtures ; colorls .hidden-file ) | fgrep '.hidden-file'
- colorls -l README.md
2017-07-12 18:45:12 +02:00
- colorls -r
- colorls --sd
- colorls --sf
2017-07-12 18:45:12 +02:00
- colorls -t
- colorls -h
- colorls --gs
2017-07-12 16:45:23 +02:00
- colorls spec/fixtures/symlinks
- colorls README.md
- colorls *
- colorls | grep /
2017-06-29 19:14:41 +02:00
install:
- gem install bundler
- bundle install