-
Notifications
You must be signed in to change notification settings - Fork 105
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #304 from davetron5000/redesign-tests
Redesign tests + 3.0 support
- Loading branch information
Showing
63 changed files
with
1,210 additions
and
3,618 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
version: 2.1 | ||
orbs: | ||
# See https://circleci.com/developer/orbs/orb/circleci/ruby | ||
ruby: circleci/ruby@1.1.2 | ||
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" | ||
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" ] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.