Sha256: 03ee3d64ff9e7f07cac60d19f5f6d29e0e55c83c496e1b67d1ec0eed299bc2ac

Contents?: true

Size: 611 Bytes

Versions: 8

Compression:

Stored size: 611 Bytes

Contents

name: Test

on:
  push:
    branches:
      - master

  pull_request:

jobs:
  rubocop:
    runs-on: ubuntu-latest
    steps:
    - uses: actions/checkout@v2
    - uses: ruby/setup-ruby@v1
      with:
        ruby-version: 3
        bundler-cache: true
    - name: Run rubocop
      run: bundle exec rubocop

  rspec:
    runs-on: ubuntu-latest

    strategy:
      matrix:
        ruby: [2.7, 3.0, 3.1]

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

Version data entries

8 entries across 8 versions & 2 rubygems

Version Path
memolog-0.4.8 .github/workflows/test.yml
memolog-0.4.7 .github/workflows/test.yml
config_default-0.2.4 .github/workflows/main.yml
memolog-0.4.6 .github/workflows/test.yml
memolog-0.4.5 .github/workflows/test.yml
memolog-0.4.4 .github/workflows/test.yml
config_default-0.2.3 .github/workflows/main.yml
config_default-0.2.2 .github/workflows/main.yml