Sha256: 674fc2b1df69127f524feb1613501a8e9c4ae3101745cd45895f739c2d3bad11

Contents?: true

Size: 734 Bytes

Versions: 2

Compression:

Stored size: 734 Bytes

Contents

name: CI

on:
  push:
    branches:
  pull_request:

jobs:
  rspec:
    name: RSpec
    runs-on: ubuntu-latest
    strategy:
      fail-fast: false
      matrix:
        ruby:
          - '2.6'
          - '2.7'
          - '3.0'
          - '3.1'
    steps:
      - uses: actions/checkout@v2
      - uses: ruby/setup-ruby@v1
        with:
          ruby-version: ${{ matrix.ruby }}
          bundler-cache: true
      - run: bundle exec rspec
  rubocop:
    name: RuboCop
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v2
      - uses: ruby/setup-ruby@v1
        with:
          # Use the same version with .rubocop.yml
          ruby-version: 2.6
          bundler-cache: true
      - run: bundle exec rubocop

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
hako-2.17.0 .github/workflows/ci.yml
hako-2.16.0 .github/workflows/ci.yml