summaryrefslogtreecommitdiff
path: root/.circleci/config.yml
blob: 9dd6de46bb69150841b38929a4a2650046050c64 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
jobs:
  build:
    docker:
      - image: cimg/ruby:3.1.2
    environment:
      RAILS_ENV: test
    steps:
      - checkout
      - run: |
          bundle install
      - run: |
          bundle exec rake test