Sha256: 4045636e296d7eb1e2ec61d86d00ecf410bb0b4dfb69a544b478496d9de26ee7

Contents?: true

Size: 441 Bytes

Versions: 3

Compression:

Stored size: 441 Bytes

Contents

name: CI

on:
  - push
  - pull_request

jobs:
  test:
    runs-on: ubuntu-latest
    strategy:
      matrix:
        ruby-version: ['2.7', '3.0', '3.1', '3.2', '3.3']

    steps:
    - uses: actions/checkout@v2
    - uses: ruby/setup-ruby@v1
      with:
        ruby-version: ${{ matrix.ruby-version }}
        bundler-cache: true
    - name: Install dependencies
      run: bundle install
    - name: Run tests
      run: bundle exec rake

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
capistrano-asg-rolling-0.5.1 .github/workflows/test.yml
capistrano-asg-rolling-0.5.0 .github/workflows/test.yml
capistrano-asg-rolling-0.4.1 .github/workflows/test.yml