Sha256: e7eb351933f8d85f0f636ebaf16baa5a06b68bef9fe0656bf2e0d437fdf4267e

Contents?: true

Size: 584 Bytes

Versions: 6

Compression:

Stored size: 584 Bytes

Contents

name: Ruby

on:
  push:
    branches:
      - main

  pull_request:

jobs:
  build:
    runs-on: ubuntu-latest
    name: Ruby ${{ matrix.ruby }}
    strategy:
      matrix:
        ruby:
          - "3.2"
          - "3.1"
          - "3.0"
          - "2.7"

    steps:
      - uses: actions/checkout@v2
      - name: Set up Ruby
        uses: ruby/setup-ruby@v1
        with:
          ruby-version: ${{ matrix.ruby }}
          bundler-cache: true
      - name: StandardRB Linter
        run: bundle exec standardrb
      - name: Run the default task
        run: bundle exec rake

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
warning_signs-0.6.0 .github/workflows/main.yml
warning_signs-0.5.0 .github/workflows/main.yml
warning_signs-0.4.0 .github/workflows/main.yml
warning_signs-0.3.0 .github/workflows/main.yml
warning_signs-0.1.0 .github/workflows/main.yml
warning_signs-0.0.1 .github/workflows/main.yml