Sha256: b15d2c6ae454718697af9497f9618b8e1176a003ca191e8a1f1072e0f7766d8a

Contents?: true

Size: 728 Bytes

Versions: 3

Compression:

Stored size: 728 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/sidekiq_web_google_auth'

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

    name: ${{ matrix.ruby }}

    steps:
      - uses: actions/checkout@v2

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

      - run: bundle exec rake

      - uses: coverallsapp/github-action@v1.1.2
        with:
          github-token: ${{ secrets.GITHUB_TOKEN }}

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
sidekiq_web_google_auth-0.1.2 .github/workflows/ci.yml
sidekiq_web_google_auth-0.1.1 .github/workflows/ci.yml
sidekiq_web_google_auth-0.1.0 .github/workflows/ci.yml