Sha256: 0b26daab6d87f9fbceeb0156314a9ce40783a18d9aafe4d228932b9d96a80a2d

Contents?: true

Size: 1.09 KB

Versions: 15

Compression:

Stored size: 1.09 KB

Contents

# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
# This workflow will download a prebuilt Ruby version, install dependencies and run tests with Rake
# For more information see: https://github.com/marketplace/actions/setup-ruby-jruby-and-truffleruby

name: Ruby-lint

on:
  push:
    branches: [ main ]
  pull_request:
    branches: [ main ]

jobs:
  test:

    runs-on: ubuntu-latest
    strategy:
      matrix:
        ruby-version: ['2.7', '3.0']

    steps:
    - uses: actions/checkout@v2
    - name: Set up Ruby
    # To automatically get bug fixes and new Ruby versions for ruby/setup-ruby,
    # change this to (see https://github.com/ruby/setup-ruby#versioning):
    # uses: ruby/setup-ruby@v1
      uses: ruby/setup-ruby@473e4d8fe5dd94ee328fdfca9f8c9c7afc9dae5e
      with:
        ruby-version: ${{ matrix.ruby-version }}
        bundler-cache: true # runs 'bundle install' and caches installed gems automatically
    - name: Run tests
      run: bundle exec rake

Version data entries

15 entries across 15 versions & 1 rubygems

Version Path
vagrant-zones-0.1.88 .github/workflows/ruby-lint.yml
vagrant-zones-0.1.87 .github/workflows/ruby-lint.yml
vagrant-zones-0.1.86 .github/workflows/ruby-lint.yml
vagrant-zones-0.1.85 .github/workflows/ruby-lint.yml
vagrant-zones-0.1.84 .github/workflows/ruby-lint.yml
vagrant-zones-0.1.83 .github/workflows/ruby-lint.yml
vagrant-zones-0.1.82 .github/workflows/ruby-lint.yml
vagrant-zones-0.1.81 .github/workflows/ruby-lint.yml
vagrant-zones-0.1.80 .github/workflows/ruby-lint.yml
vagrant-zones-0.1.79 .github/workflows/ruby-lint.yml
vagrant-zones-0.1.78 .github/workflows/ruby-lint.yml
vagrant-zones-0.1.77 .github/workflows/ruby-lint.yml
vagrant-zones-0.1.76 .github/workflows/ruby-lint.yml
vagrant-zones-0.1.75 .github/workflows/ruby-lint.yml
vagrant-zones-0.1.73 .github/workflows/ruby-lint.yml