This repository has been archived on 2025-03-22. You can view files and clone it, but cannot push or open issues or pull requests.
twine/.circleci/config.yml
Sebastian Celis 6e70c05235 Update minimum ruby version to 2.4
Also add CircleCI tests for Ruby 2.6 and 2.7
2020-07-09 13:01:31 -05:00

38 lines
1.1 KiB
YAML

version: 2.0
jobs:
"ruby-2.4":
docker:
- image: circleci/ruby:2.4
steps:
- checkout
- run: bundle install
- run: bundle exec rake test TESTOPTS="--ci-dir=$CIRCLE_TEST_REPORTS/reports"
"ruby-2.5":
docker:
- image: circleci/ruby:2.5
steps:
- checkout
- run: bundle install
- run: bundle exec rake test TESTOPTS="--ci-dir=$CIRCLE_TEST_REPORTS/reports"
"ruby-2.6":
docker:
- image: circleci/ruby:2.6
steps:
- checkout
- run: bundle install
- run: bundle exec rake test TESTOPTS="--ci-dir=$CIRCLE_TEST_REPORTS/reports"
"ruby-2.7":
docker:
- image: circleci/ruby:2.7
steps:
- checkout
- run: bundle install
- run: bundle exec rake test TESTOPTS="--ci-dir=$CIRCLE_TEST_REPORTS/reports"
workflows:
version: 2
build:
jobs:
- "ruby-2.4"
- "ruby-2.5"
- "ruby-2.6"
- "ruby-2.7"