Sha256: 8a929c876e8ba00d171ac5c65a70ef33c16259cc3a1df19426ead0b6c172427c

Contents?: true

Size: 685 Bytes

Versions: 5

Compression:

Stored size: 685 Bytes

Contents

name: CI

on:
  push:
    branches:
      - master
  pull_request:

jobs:
  build:

    runs-on: ubuntu-latest

    strategy:
      matrix:
        ruby_version: ['2.5.x', '2.6.x']

    steps:
    - uses: actions/checkout@v1
    - name: Set up Ruby ${{ matrix.ruby_version }}
      uses: actions/setup-ruby@v1
      with:
        ruby-version: ${{ matrix.ruby_version }}
    - name: Install dependencies
      run: |
        gem install bundler
        bundle install --jobs 4 --retry 3
    - name: Start httpbin container
      run: docker run -d -p 8080:80 kennethreitz/httpbin
    - name: Run Rubocop
      run: bundle exec rubocop
    - name: Run test
      run: bundle exec rspec

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
3llo-1.3.1 .github/workflows/ci.yml
3llo-1.3.1.pre.rc.0 .github/workflows/ci.yml
3llo-1.2.0 .github/workflows/ci.yml
3llo-1.1.0 .github/workflows/ci.yml
3llo-1.0.0 .github/workflows/ci.yml