Skip to content

Trigger sync with Contentful webhooks #80

Trigger sync with Contentful webhooks

Trigger sync with Contentful webhooks #80

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- master
jobs:
ci_checks:
runs-on: ubuntu-latest
strategy:
matrix:
ruby:
- 3.2.2
- 3.3.6
mongodb:
- 5.0
- 6.0
- 7.0
name: Ruby ${{ matrix.ruby }} sample
steps:
- name: Checkout this repo
uses: actions/checkout@v2
- name: Install Ruby and Bundler
uses: ruby/setup-ruby@v1
with:
bundler-cache: true
ruby-version: ${{ matrix.ruby }}
- name: Start MongoDB
uses: supercharge/mongodb-github-action@1.7.0
with:
mongodb-version: ${{ matrix.mongodb }}
- name: Run rubocop
run: |
bundle exec rubocop
- name: Run tests
run: |
bundle exec rspec