Sha256: 5df628c689f7448545538671b19da0bf70007a99ac230abd317e3706d84a7681

Contents?: true

Size: 598 Bytes

Versions: 2

Compression:

Stored size: 598 Bytes

Contents

name: Test
on:
  push:
    branches: [production, dev]
  pull_request:
    branches: [production, dev]
jobs:
  test:
    name: Test
    runs-on: ubuntu-latest
    strategy:
      matrix:
        ruby-version: ['2.5', '2.6', '2.7', '3.0']
    
    steps:
    - uses: actions/checkout@master
    
    - name: Set up Ruby
      uses: actions/setup-ruby@v1
      with:
        ruby-version: ${{ matrix.ruby-version }}
    
    - name: Run test cases
      run: |
        gem install bundler
        bundler install
        bundle exec rspec
      env:
        CODECOV_TOKEN: ${{secrets.CODECOV_TOKEN}}

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
easy-jsonapi-1.0.3 .github/workflows/codecov.yml
easy-jsonapi-1.0.2 .github/workflows/codecov.yml