Sha256: beb39268a6cb9ea507d5a3bbd08a11bbf21eb41b0b0dd005f3071806f885af82

Contents?: true

Size: 694 Bytes

Versions: 5

Compression:

Stored size: 694 Bytes

Contents

name: Development

on: [push]

jobs:
  test:
    strategy:
      matrix:
        os:
          - ubuntu
          - macos
        
        ruby:
          - 2.4
          - 2.5
          - 2.6
          - 2.7
        
        include:
          - os: 'ubuntu'
            ruby: '2.6'
            env: COVERAGE=PartialSummary,Coveralls
    
    runs-on: ${{matrix.os}}-latest
    
    steps:
    - uses: actions/checkout@v1
    - uses: actions/setup-ruby@v1
      with:
        ruby-version: ${{matrix.ruby}}
    - name: Install dependencies
      run: |
        command -v bundler || gem install bundler
        bundle install
    - name: Run tests
      run: ${{matrix.env}} bundle exec rspec

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
async-container-0.16.4 .github/workflows/development.yml
async-container-0.16.3 .github/workflows/development.yml
async-container-0.16.2 .github/workflows/development.yml
async-container-0.16.1 .github/workflows/development.yml
async-container-0.16.0 .github/workflows/development.yml