budget/.drone.yml
Andrew Tomaka ce6d1339b1
Some checks failed
continuous-integration/drone/pr Build is failing
continuous-integration/drone/push Build is failing
Reorder step run
2023-03-07 22:30:58 -05:00

39 lines
608 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
- name: lint
image: ruby:3.2.0
volumes:
- name: bundle
path: /usr/local/bundle
commands:
- bin/bundle exec standardrb
- name: test
image: ruby:3.2.0
volumes:
- name: bundle
path: /usr/local/bundle
commands:
- bin/rails test
volumes:
- name: bundle
temp: {}