Sha256: 4b04e57d9695d594b4c19fd70fa789f677d10cb35d66588e58b4c4b213dbdef6

Contents?: true

Size: 646 Bytes

Versions: 4

Compression:

Stored size: 646 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
        bash <(curl -s https://codecov.io/bash)
      env:
        CODECOV_TOKEN: ${{secrets.CODECOV_TOKEN}}

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
easy-jsonapi-1.0.7 .github/workflows/codecov.yml
easy-jsonapi-1.0.6 .github/workflows/codecov.yml
easy-jsonapi-1.0.5 .github/workflows/codecov.yml
easy-jsonapi-1.0.4 .github/workflows/codecov.yml