Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 14 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,15 @@
#
# Check https://circleci.com/docs/2.0/language-ruby/ for more details
#
version: 2
version: 2.1

jobs:
build:
parameters:
ruby-version:
type: string
docker:
# specify the version you desire here
- image: cimg/ruby:3.1.4
- image: cimg/ruby:<< parameters.ruby-version >>

# Specify service dependencies here if necessary
# CircleCI maintains a library of pre-built images
Expand Down Expand Up @@ -58,3 +61,11 @@ jobs:
- store_artifacts:
path: /tmp/test-results
destination: test-results

workflows:
test:
jobs:
- build:
matrix:
parameters:
ruby-version: ["3.0", "3.1", "3.2", "3.3", "3.4", "4.0"]