Sha256: 93894d7939015bb8f525dbb80cd4c036c81936064558f92253dbcc074e1b89a3

Contents?: true

Size: 935 Bytes

Versions: 3

Compression:

Stored size: 935 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: [master]
  pull_request:
    branches: [master]
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, jruby, jruby-head]
        redis-version: [5]
    runs-on: ${{ matrix.os }}-latest
    steps:
      - uses: actions/checkout@v2
      - uses: supercharge/redis-github-action@1.1.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

3 entries across 3 versions & 1 rubygems

Version Path
coverband-5.1.0 .github/workflows/main.yml
coverband-5.1.0.rcmailer.2 .github/workflows/main.yml
coverband-5.1.0.rcmailer.1 .github/workflows/main.yml