Sha256: 1955d456e564466f5f1da933e0456dd21abe855e5a6ce7e83946e3ccb03a11e9

Contents?: true

Size: 670 Bytes

Versions: 3

Compression:

Stored size: 670 Bytes

Contents

name: test

on:
  pull_request:
  push:
    branches:
      - master

jobs:
  rspec:
    runs-on: ubuntu-20.04
    steps:
      - uses: actions/checkout@v2
      - uses: ruby/setup-ruby@v1
        with:
          bundler-cache: true
          ruby-version: 2.7.2
      - run: bundle exec rspec --force-color
  rubocop:
    runs-on: ubuntu-20.04
    steps:
      - uses: actions/checkout@v2
        with:
          ref: ${{ github.event.pull_request.head.sha }}
      - uses: ruby/setup-ruby@v1
        with:
          bundler-cache: true
          ruby-version: 2.7.2
      - uses: r7kamura/rubocop-problem-matchers-action@v1
      - run: bundle exec rubocop --parallel

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
weneedfeed-0.9.2 .github/workflows/test.yml
weneedfeed-0.9.1 .github/workflows/test.yml
weneedfeed-0.9.0 .github/workflows/test.yml