budget/.drone.yml
Andrew Tomaka 0581459a2c
Some checks failed
continuous-integration/drone/push Build is failing
continuous-integration/drone/pr Build is failing
Parallelize
2023-03-07 22:39:32 -05:00

45 lines
686 B
YAML

name: default
kind: pipeline
steps:
- name: install
image: ruby:3.2.0
volumes:
- name: bundle
path: /usr/local/bundle
commands:
- bin/bundle install --jobs=3 --retry=3
- name: autoload
image: ruby:3.2.0
volumes:
- name: bundle
path: /usr/local/bundle
commands:
- bin/rails zeitwerk:check
depends_on:
- install
- name: lint
image: ruby:3.2.0
volumes:
- name: bundle
path: /usr/local/bundle
commands:
- bin/bundle exec standardrb
depends_on:
- install
- name: test
image: ruby:3.2.0
volumes:
- name: bundle
path: /usr/local/bundle
commands:
- bin/rails test
depends_on:
- install
volumes:
- name: bundle
temp: {}