Sha256: 0fb8dcab2decc742f4869dcb5b3af18d2d358d2b4a6233ac1513121effb75bc6

Contents?: true

Size: 944 Bytes

Versions: 10

Compression:

Stored size: 944 Bytes

Contents

name: CI
# Controls when the action will run.
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,
        ruby: [2.3, 2.4, 2.5, 2.6, 2.7, "3.0", jruby, jruby-head]
        redis-version: [4, 5, 6]
    runs-on: ${{ matrix.os }}-latest
    steps:
      - uses: actions/checkout@v2
      - uses: supercharge/redis-github-action@1.2.0
      - uses: ruby/setup-ruby@v1
        with:
          ruby-version: ${{ matrix.ruby }}
          bundler-cache: true # runs 'bundle install' and caches installed gems automatically
      - run: bundle exec rake

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
coverband-5.2.3.2 .github/workflows/main.yml
coverband-5.2.3.1 .github/workflows/main.yml
coverband-5.2.4 .github/workflows/main.yml
coverband-5.2.3 .github/workflows/main.yml
coverband-5.2.2 .github/workflows/main.yml
coverband-5.2.1 .github/workflows/main.yml
coverband-5.2.1.rc.1 .github/workflows/main.yml
coverband-5.2.0 .github/workflows/main.yml
coverband-5.2.0.rc.2 .github/workflows/main.yml
coverband-5.2.0.rc.1 .github/workflows/main.yml