Sha256: 32f01f29471a05364c46c675d5a0edde42f79fddcf669ac7b4d0a9caf10ee2da

Contents?: true

Size: 870 Bytes

Versions: 3

Compression:

Stored size: 870 Bytes

Contents

name: Tests

on:
  push:
    branches-ignore: 
      - main

jobs:
  tests:
    strategy:
      matrix:
        ruby: [2.5, 2.6, 2.7, 3.0]
    runs-on: ubuntu-latest

    steps:
    - uses: actions/checkout@v2
    - name: Set up Ruby
      uses: ruby/setup-ruby@v1
      with:
        ruby-version: ${{ matrix.ruby }}
        bundler-cache: true
    - name: Run linter
      run: bundle exec rubocop
    - name: Run tests
      run: bundle exec rspec
  prettier:
    runs-on: ubuntu-latest
    steps:
    - uses: actions/checkout@v2
    - name: Set up Ruby
      uses: ruby/setup-ruby@v1
      with:
        ruby-version: 3.0
        bundler-cache: true
    - name: Set up Node
      uses: actions/setup-node@v2
      with:
        node-version: '14'
    - name: Install yarn dep
      run: yarn install
    - name: Check prettier
      run: yarn prettier -c '**/*.rb' 

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
omniauth-forge-0.2.1.1 .github/workflows/test_only.yml
omniauth-forge-0.2.1 .github/workflows/test_only.yml
omniauth-forge-0.2.0 .github/workflows/test_only.yml