Sha256: 08a9775a445e8219aaa0bcc7cee26dcdb5c0e9d9a5522d51d5198493f34a71b5
Contents?: true
Size: 781 Bytes
Versions: 1
Compression:
Stored size: 781 Bytes
Contents
# Ruby CircleCI 2.0 configuration file # # Check https://circleci.com/docs/2.0/language-ruby/ for more details # version: 2 workflows: version: 2 commit: jobs: - ruby-2.6 jobs: "ruby-2.6": docker: # specify the version you desire here - image: ruby:2.6 - image: amazon/dynamodb-local steps: - checkout - run: name: install dependencies command: | gem install bundler:2.1.4 bundle install --jobs=4 bundle exec appraisal install - run: name: run tests command: bundle exec appraisal rspec - store_test_results: path: /tmp/test-results - store_artifacts: path: /tmp/test-results destination: test-results
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
dynamo-store-1.0.0 | .circleci/config.yml |