Sha256: 8fceaafbab29a47ab29e9a64f6be3ae9e700a57c7f43edc71323fa1513678d3f

Contents?: true

Size: 410 Bytes

Versions: 2

Compression:

Stored size: 410 Bytes

Contents

on: push
name: test
jobs:
  test:
    runs-on: ubuntu-latest
    strategy:
      fail-fast: false
      matrix:
        ruby:
        - "2.7"
        - "3.0"
        - "3.1"
    steps:
    - uses: actions/checkout@v1
    - uses: ruby/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

2 entries across 2 versions & 1 rubygems

Version Path
oauth2_api_client-3.4.1 .github/workflows/test.yml
oauth2_api_client-3.4.0 .github/workflows/test.yml