Skip to content

Update docs

Update docs #6

Workflow file for this run

name: RSpec
on:
push:
branches:
- main
pull_request:
branches:
- main
schedule:
- cron: "0 21 * * 6"
jobs:
rspec:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
mongodb-version: ["4.0", "4.2", "4.4", "5.0", "6.0"]
steps:
- uses: actions/checkout@v3
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
bundler-cache: true
- name: Start MongoDB
uses: supercharge/mongodb-github-action@1.7.0
with:
mongodb-version: ${{ matrix.mongodb-version }}
- run: bundle exec rake errbit:bootstrap
- run: bundle exec rspec