Sha256: 970a76b5d7167c1b175cccc22e12df87ddf1b6ac0558bb04fe6efa827ce2dda2

Contents?: true

Size: 633 Bytes

Versions: 1

Compression:

Stored size: 633 Bytes

Contents

name: CI

on: [push, pull_request]

jobs:
  test:
    runs-on: ubuntu-latest

    # We want to run on external PRs, but not on our own internal PRs as they'll be run on push event
    if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != 'umbrellio/self_data'

    strategy:
      fail-fast: false
      matrix:
        ruby: ["2.6", "2.7", "3.0", "3.1"]

    name: ${{ matrix.ruby }}

    steps:
    - uses: actions/checkout@v2

    - uses: ruby/setup-ruby@v1
      with:
        ruby-version: ${{ matrix.ruby }}
        bundler-cache: true

    - run: bundle exec rspec
    - run: bundle exec rubocop

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
self_data-1.3.0 .github/workflows/ci.yml