Sha256: 8cb6d45e461a9a049feb5ba6e714652ff98eb938b11c32f0b5efce436b875312

Contents?: true

Size: 514 Bytes

Versions: 6

Compression:

Stored size: 514 Bytes

Contents

name: Run Rspec Tests

on:
  pull_request:
    branches:
    - master

jobs:
  build:
    runs-on: ubuntu-latest
    steps:
    - uses: actions/checkout@v3
    - 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 alpha version
      run: grep alpha lib/runger_release_assistant/version.rb
    - name: Ensure no git diff
      run: git diff --exit-code

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
runger_release_assistant-0.7.0 .github/workflows/ruby.yml
runger_release_assistant-0.6.0 .github/workflows/ruby.yml
runger_release_assistant-0.5.0 .github/workflows/ruby.yml
runger_release_assistant-0.4.2 .github/workflows/ruby.yml
runger_release_assistant-0.4.1 .github/workflows/ruby.yml
runger_release_assistant-0.4.0 .github/workflows/ruby.yml