Skip to content

Commit

Permalink
add circleci to ruby
Browse files Browse the repository at this point in the history
  • Loading branch information
ManuCiao committed Oct 1, 2024
1 parent e870303 commit 85d45df
Showing 1 changed file with 23 additions and 0 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

executors:
ruby-executor:
docker:
- image: cimg/ruby:2.7.2

jobs:
ruby-test:
executor: ruby-executor
steps:
- checkout
- run:
name: Install dependencies
command: bundle install
- run:
name: Run tests
command: bundle exec rspec

workflows:
test:
jobs:
- ruby-test

0 comments on commit 85d45df

Please sign in to comment.