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

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

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

tasks:
  - build: |
      cd game-of-life/CLI/ruby
      bundle install -j $(nproc)

  - test: |
      cd game-of-life/CLI/ruby
      bundle exec rspec --format progress

  - lint: |
      cd game-of-life/CLI/ruby
      bundle exec rubocop