Sha256: 88b4902f77f7e5d7c62ec679929bfab1d5b6414372727c32e5916d57ef5c58e5

Contents?: true

Size: 526 Bytes

Versions: 8

Compression:

Stored size: 526 Bytes

Contents

name: CI
on: [push]
jobs:
  build:
    runs-on: ubuntu-latest
    strategy:
      matrix:
        ruby: ['3.0']
    steps:
      - name: Check out repository code
        uses: actions/checkout@v2
      - name: Set up Ruby
        uses: actions/setup-ruby@v1
        with:
          ruby-version: ${{ matrix.ruby }}
      - name: Install bundler
        run: gem install bundler
      - name: Run bundler
        run: bundle install --jobs 4 --retry 3
      - name: Run Rake
        run: bundle exec rake

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
ngrok-api-0.19.0 .github/workflows/ci.yml
ngrok-api-0.18.0 .github/workflows/ci.yml
ngrok-api-0.17.0 .github/workflows/ci.yml
ngrok-api-0.16.0 .github/workflows/ci.yml
ngrok-api-0.15.0 .github/workflows/ci.yml
ngrok-api-0.14.0 .github/workflows/ci.yml
ngrok-api-0.12.0 .github/workflows/ci.yml
ngrok-api-0.9.0 .github/workflows/ci.yml