Sha256: 9fba7730538935276060de2f24a6e8b9d8e55d9aa4a31ffc6cf60aad7fcc71a7

Contents?: true

Size: 846 Bytes

Versions: 6

Compression:

Stored size: 846 Bytes

Contents

name: CI

on:
  pull_request:
  push:
    branches:
      - master

jobs:
  ci_checks:
    runs-on: ubuntu-latest
    strategy:
      matrix:
        ruby:
          - 2.7.5
          - 3.0.3
          - 3.1.1
        mongodb:
          - 4.2
          - 4.4
          - 5.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

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
consyncful-1.0.0 .github/workflows/ci.yml
consyncful-0.9.0 .github/workflows/ci.yml
consyncful-0.8.0 .github/workflows/ci.yml
consyncful-0.7.3 .github/workflows/ci.yml
consyncful-0.7.2 .github/workflows/ci.yml
consyncful-0.7.1 .github/workflows/ci.yml