Sha256: 1f74efd525f3cdd0a1be1ca46f5627ab96730b84a6f166e56779f35b13d5e190

Contents?: true

Size: 393 Bytes

Versions: 1

Compression:

Stored size: 393 Bytes

Contents

name: test

on: [push]

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

    steps:
    - uses: actions/checkout@v2
    - uses: ruby/setup-ruby@v1
      with:
        ruby-version: ${{ matrix.ruby-version }}
        bundler-cache: true
    - name: Run spec
      run: |
        bundle exec rspec spec

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
danger-ktlint-0.0.9 .github/workflows/test.yml