summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
blob: cfa23e70b905d47b4350c559feeb09e1658d1f5c (plain)
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