Sha256: db66e345bf7aa4b0b059299ff8d326c3d7234de6996fceffa6635780eb8bbdfe

Contents?: true

Size: 766 Bytes

Versions: 2

Compression:

Stored size: 766 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 $(find . -type f -name version.rb)
    - name: Ensure no git diff
      run: git diff --exit-code && git diff-index --quiet --cached HEAD
    - name: Ensure "## Unreleased" is in CHANGELOG.md
      run: grep "^## Unreleased" CHANGELOG.md
    - name: Upload Code Coverage
      uses: codecov/codecov-action@v3
      with:
        directory: tmp/simple_cov

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
runger_actions-0.19.2 .github/workflows/ruby.yml
runger_actions-0.19.1 .github/workflows/ruby.yml