1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
before_script: - export PATH=~/bin:/usr/local/bin:/usr/bin:/bin - apt-get update - apt-get install git-annex - gem install --bindir ~/bin bundler - cp config.yml.example config.yml - bundle install rspec: script: - bundle exec rspec spec tags: - ruby except: - tags rubocop: script: - bundle exec rubocop tags: - ruby except: - tags