Sha256: 97cadc1c02716fe511375deca0a921a766d07fc38552fc62b5d71fa3a1574a92
Contents?: true
Size: 458 Bytes
Versions: 26
Compression:
Stored size: 458 Bytes
Contents
version: '3' services: base: &base image: azeroth working_dir: /home/app/app volumes: - .:/home/app/app base_build: <<: *base build: . command: echo done azeroth: <<: *base container_name: azeroth depends_on: [base_build] command: /bin/bash -c 'rspec' test_all: <<: *base depends_on: [base_build] command: /bin/bash -c 'rspec && yard && rake yardstick_measure && rake verify_measurements'
Version data entries
26 entries across 26 versions & 1 rubygems