Sha256: a9048fd3983b6d90d5209051bb910a359abeaa68e9aadc49abf9316bd5801292

Contents?: true

Size: 594 Bytes

Versions: 2

Compression:

Stored size: 594 Bytes

Contents

name: CI
on: [push, pull_request]
jobs:
  test:
    name: 'Test Suite'
    strategy:
      matrix:
        ruby: [2.7.6, 3.0.4, 3.1.2]
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v2
      - uses: ruby/setup-ruby@v1
        with:
          ruby-version: ${{ matrix.ruby }}
          bundler-cache: true
      - run: bundle exec rake
  lint:
    name: 'Rubocop'
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v2
      - uses: ruby/setup-ruby@v1
        with:
          ruby-version: 3.1
          bundler-cache: true
      - run: bundle exec rubocop

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
verboten_keys-1.1.1 .github/workflows/ci.yml
verboten_keys-1.1.0 .github/workflows/ci.yml