Sha256: 6159fb343112c0bc6c06be457cc532ecfd6cfba00d67f8ba4ae722be3355f9d9

Contents?: true

Size: 653 Bytes

Versions: 3

Compression:

Stored size: 653 Bytes

Contents

name: CI

on: push

jobs:
  test:
    name: Tests
    runs-on: ubuntu-latest
    strategy:
      fail-fast: false
      matrix:
        ruby:
          - "2.7.4"
          - "3.1.2"
    steps:
    - uses: actions/checkout@v3
    - uses: ruby/setup-ruby@v1
      with:
        ruby-version: ${{ matrix.ruby }}
        bundler-cache: true
    - name: Run tests
      run: bundle exec rake spec
  lint:
    name: Lint Ruby
    runs-on: ubuntu-latest
    steps:
    - uses: actions/checkout@v3
    - uses: ruby/setup-ruby@v1
      with:
        ruby-version: 3.1.2
    - name: Bundle
      run: bundle
    - name: Run Rubocop
      run: bundle exec rubocop

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
omniauth-nitro-id-1.1.0 .github/workflows/ci.yml
omniauth-nitro-id-1.0.0 .github/workflows/ci.yml
omniauth-nitro-id-0.1.1 .github/workflows/ci.yml