Sha256: 4684e22f726b90d9e9adb2bcfa283dd0afaa37d9eeeaee3c470c3e5b3e9db30a

Contents?: true

Size: 521 Bytes

Versions: 5

Compression:

Stored size: 521 Bytes

Contents

name: tests

on:
  push:

jobs:
  validate:
    strategy:
      matrix:
        ruby-version: ["2.6", "2.7", "3.0", "3.1", "3.2"]
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v3
      - name: Set up Ruby
        uses: ruby/setup-ruby@v1
        with:
          bundler-cache: true
          ruby-version: "${{ matrix.ruby-version }}"
      - name: Run tests
        run: bundle exec rspec
      - name: Run rubocop
        run: bundle exec rubocop --parallel --extra-details --display-style-guide

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
ibandit-1.17.0 .github/workflows/tests.yml
ibandit-1.16.0 .github/workflows/tests.yml
ibandit-1.15.0 .github/workflows/tests.yml
ibandit-1.14.0 .github/workflows/tests.yml
ibandit-1.13.0 .github/workflows/tests.yml