Sha256: e75926ca20f996f434ab7ac61b03c58b5313801996d973515ea7e5588b9ae0b2
Contents?: true
Size: 1.18 KB
Versions: 1
Compression:
Stored size: 1.18 KB
Contents
version: 2.1 orbs: # See https://circleci.com/developer/orbs/orb/circleci/ruby ruby: circleci/ruby@1.4.0 jobs: # keyword test: # my name for the job parameters: # keyword ruby-version: # my parameter name type: string # type is a keyword docker: # keyword - image: cimg/base:stable steps: # keyword - checkout # magic name - ruby/install: # ruby/ is from the orb name, install is a command in that orb version: << parameters.ruby-version >> # magic nonsense for param subst (version param to the command) - run: command: "bin/setup" - run: command: "bin/ci none" workflows: # keyword all-rubies: # my name for the workflow jobs: # keyword - test: # my name for the job matrix: # keyword parameters: # keyword # All rubies being maintained per this page: # https://www.ruby-lang.org/en/downloads/branches/ ruby-version: [ "2.5", "2.6", "2.7", "3.0" ]
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
gli-2.21.0 | .circleci/config.yml |