Sha256: 8e865e90f814c3641f133fc22da54a0849c67804d21920bc814ade0122bd0615

Contents?: true

Size: 468 Bytes

Versions: 3

Compression:

Stored size: 468 Bytes

Contents

name: Run Tests, Linters, Etc.

on:
  pull_request:
    branches:
    - master

jobs:
  build:
    runs-on: ubuntu-latest
    steps:
    - uses: actions/checkout@v2
    - uses: ruby/setup-ruby@v1
      with:
        bundler-cache: true
    - name: Run Rubocop
      run: bin/rubocop --format clang
    - name: Run RSpec tests
      run: bin/rspec --format progress
    - name: Ensure no git diff
      run: git diff --exit-code && git diff-index --quiet --cached HEAD

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
shaped-0.9.0 .github/workflows/ruby.yml
shaped-0.8.2 .github/workflows/ruby.yml
shaped-0.8.0 .github/workflows/ruby.yml