Sha256: a99d87f90d4f06dd0228627fc5bf051f9cf0eb1bd4bd731e575b931e445e633d

Contents?: true

Size: 1.79 KB

Versions: 8

Compression:

Stored size: 1.79 KB

Contents

name: ci

on:
  pull_request:
  push:
  schedule:
    - cron:  '0 1 * * *'

jobs:
  specs:
    runs-on: ubuntu-latest
    needs: diffend
    strategy:
      fail-fast: false
      matrix:
        ruby:
          - '3.0'
          - '2.7'
          - '2.6'
        include:
          - ruby: '3.0'
            coverage: 'true'
    steps:
      - uses: actions/checkout@v2
      - name: Install package dependencies
        run: "[ -e $APT_DEPS ] || sudo apt-get install -y --no-install-recommends $APT_DEPS"
      - name: Set up Ruby
        uses: ruby/setup-ruby@v1
        with:
          ruby-version: ${{matrix.ruby}}
      - name: Install latest bundler
        run: |
          gem install bundler --no-document
          bundle config set without 'tools benchmarks docs'
      - name: Bundle install
        run: |
          bundle config set without development
          bundle install --jobs 4 --retry 3
      - name: Run Kafka with docker-compose
        run: docker-compose up -d
      - name: Run all tests
        env:
          GITHUB_COVERAGE: ${{matrix.coverage}}
        run: bundle exec rspec

  diffend:
    runs-on: ubuntu-latest
    strategy:
      fail-fast: false
    steps:
      - uses: actions/checkout@v2
        with:
          fetch-depth: 0
      - name: Set up Ruby
        uses: ruby/setup-ruby@v1
        with:
          ruby-version: 3.0
      - name: Install latest bundler
        run: gem install bundler --no-document
      - name: Install Diffend plugin
        run: bundle plugin install diffend
      - name: Bundle Secure
        run: bundle secure

  coditsu:
    runs-on: ubuntu-latest
    strategy:
      fail-fast: false
    steps:
      - uses: actions/checkout@v2
        with:
          fetch-depth: 0
      - name: Run Coditsu
        run: \curl -sSL https://api.coditsu.io/run/ci | bash

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
karafka-1.4.11 .github/workflows/ci.yml
karafka-1.4.10 .github/workflows/ci.yml
karafka-1.4.9 .github/workflows/ci.yml
karafka-1.4.8 .github/workflows/ci.yml
karafka-1.4.7 .github/workflows/ci.yml
karafka-1.4.6 .github/workflows/ci.yml
karafka-1.4.5 .github/workflows/ci.yml
karafka-1.4.4 .github/workflows/ci.yml