debian-stable.yml

 1image: debian/stable
 2sources:
 3- https://git.sr.ht/~singpolyma/sgx-jmp
 4packages:
 5- ruby
 6- ruby-dev
 7- bundler
 8- libxml2-dev
 9- libpq-dev
10- rubocop
11environment:
12  LANG: C.UTF-8
13tasks:
14- dependencies: |
15    cd sgx-jmp
16    bundle install --without=development --path=.gems
17- lint: |
18    cd sgx-jmp
19    rubocop
20- test: |
21    cd sgx-jmp
22    RANTLY_COUNT=100 bundle exec rake test