Sha256: 92b601313ed9d291be69d210694d6b72c417880caec136c01ddc15027382aaf8

Contents?: true

Size: 1.2 KB

Versions: 2

Compression:

Stored size: 1.2 KB

Contents

name: CI
# Controls when the action will run.
# Github Actions multiple gemfile support?
on:
  # Triggers the workflow on push or pull request events but only for the master branch
  push:
    branches: [main]
  pull_request:
    branches: [main]
jobs:
  test:
    strategy:
      fail-fast: false
      matrix:
        # need to figure out how to use redis on macos github actions
        # os: [ubuntu, macos]
        os: [ubuntu]
        # remove until I sort out CI issues for truffle
        # truffleruby,
        # truffleruby-head,
        # removing jruby again to flaky
        # ruby: [2.3, 2.4, 2.5, 2.6, 2.7, "3.0", "3.1", jruby]
        # need to add support for multiple gemfiles
        ruby: ["2.7", "3.0", "3.1", "3.2"]
        redis-version: [4, 5, 6, 7]
    runs-on: ${{ matrix.os }}-latest
    steps:
      - uses: actions/checkout@v3
      - uses: supercharge/redis-github-action@1.2.0
        with:
          redis-version: ${{ matrix.redis-version }}
      - uses: ruby/setup-ruby@v1
        with:
          ruby-version: ${{ matrix.ruby }}
          bundler-cache: true # runs 'bundle install' and caches installed gems automatically
      - run: bundle exec standardrb
      - run: bundle exec rake

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
coverband-5.2.6.rc.6 .github/workflows/main.yml
coverband-5.2.6.rc.5 .github/workflows/main.yml