Sha256: 59aa6e8321680d9079b4aa3535e74fa8b60b1529b19051da348a424e24b540e3

Contents?: true

Size: 1.11 KB

Versions: 6

Compression:

Stored size: 1.11 KB

Contents

name: Development

on: [push, pull_request]

jobs:
  test:
    runs-on: ${{matrix.os}}-latest
    continue-on-error: ${{matrix.experimental}}
    
    strategy:
      matrix:
        experimental: [false]
        
        os:
          - ubuntu
          - macos
        
        ruby:
          - 2.5
          - 2.6
          - 2.7
        
        include:
          - experimental: true
            os: ubuntu
            ruby: truffleruby
          - experimental: true
            os: ubuntu
            ruby: jruby
          - experimental: true
            os: ubuntu
            ruby: head
          - experimental: true
            os: ubuntu
            ruby: 2.6
            env: COVERAGE=PartialSummary,Coveralls
    
    steps:
    - uses: actions/checkout@v1
    - uses: ruby/setup-ruby@v1
      with:
        ruby-version: ${{matrix.ruby}}
    
    - name: Installing packages (ubuntu)
      if: matrix.os == 'ubuntu'
      run: sudo apt-get install apache2-utils
    
    - name: Install dependencies
      run: ${{matrix.env}} bundle install
    
    - name: Run tests
      run: ${{matrix.env}} bundle exec rspec

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
async-http-0.52.4 .github/workflows/development.yml
async-http-0.52.3 .github/workflows/development.yml
async-http-0.52.2 .github/workflows/development.yml
async-http-0.52.1 .github/workflows/development.yml
async-http-0.52.0 .github/workflows/development.yml
async-http-0.51.6 .github/workflows/development.yml