Sha256: d3376aa3c7281ed16beadf1a81c8306bd516ff4b48ae4d12b1a501f2b558e826

Contents?: true

Size: 739 Bytes

Versions: 9

Compression:

Stored size: 739 Bytes

Contents

version: 2.1
orbs:
  ruby: circleci/ruby@2.0.1
jobs:
  test:
    docker:
      - image: cimg/ruby:3.0.6-node
    steps:
      - checkout
      - ruby/install-deps
      - run:
          name: Run tests
          command: bundle exec rake
  deploy:
    docker:
      - image: cimg/ruby:3.0.6-node
    steps:
      - checkout
      - ruby/install-deps
      - run:
          name: Publish gem to Rubygems
          command: bundle exec rake release
workflows:
  version: 2
  test-deploy:
    jobs:
      - test:
          filters:
            tags:
              only: /.*/
      - deploy:
          requires:
            - test
          filters:
            tags:
              only: /^v.*/
            branches:
              ignore: /.*/

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
nova-api-1.4.6 .circleci/config.yml
nova-api-1.4.5 .circleci/config.yml
nova-api-1.4.3 .circleci/config.yml
nova-api-1.4.1 .circleci/config.yml
nova-api-1.4.0 .circleci/config.yml
nova-api-1.3.0 .circleci/config.yml
nova-api-1.2.0 .circleci/config.yml
nova-api-1.1.0 .circleci/config.yml
nova-api-1.0.0 .circleci/config.yml