colorls/.travis.yml

72 lines
2 KiB
YAML
Raw Normal View History

conditions: v1
if: branch = master OR tag IS present
2017-06-29 19:14:41 +02:00
language:
ruby
cache:
bundler
2017-06-29 19:14:41 +02:00
rvm:
- '2.5'
- '2.6'
- '2.7'
2017-06-29 19:14:41 +02:00
before_install:
- gem --version
- gem install bundler -v '~> 2'
2017-06-29 19:14:41 +02:00
script:
- bundle exec rubocop
- bundle exec rake spec
- bundle exec rake install
- bundle binstubs colorls
- PATH=$PWD/bin:$PATH
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
- colorls --hyperlink
2017-07-12 18:45:12 +02:00
- colorls -t
- colorls --sort=time
- colorls -U
- colorls --sort=none
- colorls -S
- colorls --sort=size
- colorls -h
- colorls --gs
2017-07-12 16:45:23 +02:00
- colorls spec/fixtures/symlinks
- colorls README.md
- colorls *
- colorls | grep /
- colorls --color
- colorls --color=auto
- colorls --color=never
- colorls --color=always
- colorls --tree
- colorls --tree=1
- LC_ALL=C colorls spec/fixtures/
- LC_ALL=C colorls --git spec/fixtures/
2017-06-29 19:14:41 +02:00
deploy:
provider: rubygems
api_key:
secure: iHo85pvy3iIp0/r8mbP0q0VPCFyYcwaQb19YUxwIGbMrksswIJPe2bsdAQTvd1fU3U+uwAgyzfaLMWgY6T1evVjv5GGXW0zmNthgWuaCbTBmzx3q6OPV6zJLsinKSJ4xbKjmTOi6BIhXTtc09dRRNp1d9U8HtmM9KyvD5ORm5M9W0/WxP3+8oOe0/yl3DOVNgCQ0j64KEqowLlfdJXe2q5iSUkZEvf+o5F6pz0g7dFiVHPVpJbZ9sOchPzYNMjLCx4jPt42J806oAH7TMeRC4lFpKgJr9U05LRGb22jiokHH6gl17RpuGRYJIexWkf3jb5iy9bivT2S2fGo9/BBKO5BvQAaL7McCwpdKM2QEyVy7RVbUz5D8vfXkJNIJankQj3Ikuz7qYyDglucGCpSGjecNCqL61NoBag7ORJ0RMWg7zklKjR59zeT4oks8rByx688y5Oi4f9Z98SPfc9NIJbHxbrDHtr13gm509cEXxwOLuVePa9J+mDGq2Uawi/PuIon1x2ztHUgvTx0DSYtwv96HzXet8QqXHwRKKjddxEApvCvGvaJV3akeUVjcsyei892ajHP6CffaKazPtogotfsu68g8WmKFWHFRkdmS6NIqg7MrnMRCjDkxAoQYYzt6cl95aBk4G7CTbjtXgIct1LGMM/WjE6K/jpeF0YLsVR4=
gem: colorls
on:
all_branches: true
condition: $TRAVIS_BRANCH = master || $TRAVIS_TAG =~ ^v[0-9][.]
repo: athityakumar/colorls
rvm: '2.6'
os: linux