summaryrefslogtreecommitdiffstats
path: root/.build.yml
blob: 0bdd11f421aeeb3641d5f5c31f510580d06f80ce (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
image: alpine/latest

packages:
  - ruby
  - ruby-dev
  - ruby-bundler

sources:
  - https://git.sr.ht/~a14m/game-of-life

tasks:
  - test: |
      cd game-of-life/CLI/ruby
      bundle install -j $(nproc)
      bundle exec rspec --format progress

  - lint: |
      cd game-of-life/CLI/ruby
      bundle install -j $(nproc)
      bundle exec rubocop