Update dependencies and add pipelines #2
1 changed files with 37 additions and 36 deletions
13
.drone.yml
13
.drone.yml
|
@ -2,7 +2,7 @@ name: default
|
|||
kind: pipeline
|
||||
|
||||
steps:
|
||||
- name: install
|
||||
- name: install
|
||||
image: ruby:3.2.0
|
||||
volumes:
|
||||
- name: bundle
|
||||
|
@ -10,16 +10,17 @@ steps:
|
|||
commands:
|
||||
- bin/bundle install --jobs=3 --retry=3
|
||||
|
||||
- name: autoload
|
||||
- name: autoload
|
||||
image: ruby:3.2.0
|
||||
volumes:
|
||||
- name: bundle
|
||||
path: /usr/local/bundle
|
||||
commands: - bin/rails zeitwerk:check
|
||||
commands:
|
||||
- bin/rails zeitwerk:check
|
||||
depends_on:
|
||||
- install
|
||||
|
||||
- name: lint
|
||||
- name: lint
|
||||
image: ruby:3.2.0
|
||||
volumes:
|
||||
- name: bundle
|
||||
|
@ -29,7 +30,7 @@ steps:
|
|||
depends_on:
|
||||
- install
|
||||
|
||||
- name: test
|
||||
- name: test
|
||||
image: ruby:3.2.0
|
||||
volumes:
|
||||
- name: bundle
|
||||
|
@ -41,7 +42,7 @@ steps:
|
|||
- install
|
||||
|
||||
volumes:
|
||||
- name: bundle
|
||||
- name: bundle
|
||||
temp: {}
|
||||
|
||||
trigger:
|
||||
|
|
Loading…
Reference in a new issue