Sha256: 685b99aa80f94def4a7f11c849bae31a7bcadf6946b2d80bcbec6db88b22c809

Contents?: true

Size: 407 Bytes

Versions: 4

Compression:

Stored size: 407 Bytes

Contents

on: push
name: test
jobs:
  test:
    runs-on: ubuntu-latest
    strategy:
      fail-fast: false
      matrix:
        ruby:
        - 2.6
        - 2.7
        - 3.0
    steps:
    - uses: actions/checkout@v1
    - uses: actions/setup-ruby@v1
      with:
        ruby-version: ${{ matrix.ruby }}
    - run: gem install bundler
    - run: bundle
    - run: bundle exec rspec
    - run: bundle exec rubocop

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
oauth2_api_client-3.3.0 .github/workflows/test.yml
oauth2_api_client-3.2.1 .github/workflows/test.yml
oauth2_api_client-3.2.0 .github/workflows/test.yml
oauth2_api_client-3.1.1 .github/workflows/test.yml