RailsEventStore/rails_event_store

View on GitHub
.github/workflows/ruby_event_store-sidekiq_scheduler_test.yml

Summary

Maintainability
Test Coverage
name: ruby_event_store-sidekiq_scheduler_test
on:
  workflow_dispatch:
  repository_dispatch:
    types:
    - script
  push:
    paths:
    - contrib/ruby_event_store-sidekiq_scheduler/**
    - ".github/workflows/ruby_event_store-sidekiq_scheduler_test.yml"
    - support/**
    - "!support/bundler/**"
    - "!support/ci/**"
  pull_request:
    types:
    - opened
    - reopened
    paths:
    - contrib/ruby_event_store-sidekiq_scheduler/**
    - ".github/workflows/ruby_event_store-sidekiq_scheduler_test.yml"
    - support/**
    - "!support/bundler/**"
    - "!support/ci/**"
jobs:
  test:
    runs-on: ubuntu-20.04
    timeout-minutes: 120
    env:
      WORKING_DIRECTORY: contrib/ruby_event_store-sidekiq_scheduler
      RUBY_VERSION: "${{ matrix.ruby_version }}"
      BUNDLE_GEMFILE: "${{ matrix.bundle_gemfile }}"
    strategy:
      fail-fast: false
      matrix:
        include:
        - ruby_version: ruby-3.3
          bundle_gemfile: Gemfile
        - ruby_version: ruby-3.2
          bundle_gemfile: Gemfile
        - ruby_version: ruby-3.1
          bundle_gemfile: Gemfile
        - ruby_version: ruby-3.0
          bundle_gemfile: Gemfile
        - ruby_version: ruby-3.3
          bundle_gemfile: Gemfile.sidekiq_6_5
        - ruby_version: ruby-3.3
          bundle_gemfile: Gemfile.sidekiq_5_2
    steps:
    - uses: actions/checkout@v4
      with:
        fetch-depth: 1
    - uses: cachix/install-nix-action@v25
      with:
        nix_path: nixpkgs=channel:nixos-unstable
    - uses: cachix/cachix-action@v14
      with:
        name: railseventstore
        authToken: "${{ secrets.CACHIX_AUTH_TOKEN }}"
    - run: test -e ${{ env.BUNDLE_GEMFILE }}.lock
      working-directory: "${{ env.WORKING_DIRECTORY }}"
    - uses: ruby/setup-ruby@v1
      with:
        ruby-version: "${{ env.RUBY_VERSION }}"
        bundler-cache: true
        working-directory: "${{ env.WORKING_DIRECTORY }}"
    - run: |
        nix-shell --run "make test" -E"
          with import <nixpkgs> { };
          mkShell {
            inputsFrom = [
              (import ../../support/nix/redis.nix)
            ];
          }
        "
      working-directory: "${{ env.WORKING_DIRECTORY }}"