Skip to content
This repository has been archived by the owner on May 8, 2024. It is now read-only.

Commit

Permalink
Added circleci config file
Browse files Browse the repository at this point in the history
  • Loading branch information
rubydog committed Aug 29, 2022
1 parent 34f1eb8 commit 709f801
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 13 deletions.
23 changes: 23 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
version: 2.1

jobs:
test_and_lint:
parameters:
ruby-version:
type: string
docker:
- image: cimg/ruby:<< parameters.ruby-version >>
steps:
- checkout
- run: gem install bundler
- run: bundle install
- run: bundle exec rake test

workflows:
version: 2
workflow:
jobs:
- test_and_lint:
matrix:
parameters:
ruby-version: ["2.7", "3.0", "3.1"]
13 changes: 0 additions & 13 deletions .travis.yml

This file was deleted.

3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Change Log

##Unreleased
* Changes CI/CD vendor from tavis to circleci

## v1.8.2
* Updated `rich_text_renderer` gem version.

Expand Down

0 comments on commit 709f801

Please sign in to comment.