Sha256: 8a9da69acc878ac6171131d3df2178e8f0c4ec26988eb45795dc04f72a82c462

Contents?: true

Size: 606 Bytes

Versions: 4

Compression:

Stored size: 606 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]

    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

4 entries across 4 versions & 1 rubygems

Version Path
memolog-0.4.2 .github/workflows/test.yml
memolog-0.4.1 .github/workflows/test.yml
memolog-0.4.0 .github/workflows/test.yml
memolog-0.3.5 .github/workflows/test.yml