Sha256: d71492ff2188ea3836666f691055d6f84bf8dbe209b14b9d84436df2c611a0d7

Contents?: true

Size: 662 Bytes

Versions: 7

Compression:

Stored size: 662 Bytes

Contents

name: RSpec and Rubocop

on:
  push:
    branches:
      - main

  pull_request:

jobs:
  ci:
    runs-on: ubuntu-latest
    name: RSpec and Rubocop
    timeout-minutes: 3
    steps:
      - uses: actions/checkout@v3
      - name: Set up Ruby
        uses: ruby/setup-ruby@v1
        with:
          ruby-version: ${{ env.ruby_version }}
          bundler-cache: true
      - name: Run rspec
        run: bundle exec rspec
      - name: Run rubocop
        run: bundle exec rubocop
#      - name: Upload coverage directory
#        if: always()
#        uses: actions/upload-artifact@v2
#        with:
#          name: coverage-report
#          path: coverage/

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
foobara-empty-ruby-project-generator-0.0.11 templates/.github/workflows/ci.yml.erb
foobara-empty-ruby-project-generator-0.0.10 templates/.github/workflows/ci.yml.erb
foobara-empty-ruby-project-generator-0.0.9 templates/.github/workflows/ci.yml.erb
foobara-empty-ruby-project-generator-0.0.8 templates/.github/workflows/ci.yml.erb
foobara-empty-ruby-project-generator-0.0.7 templates/.github/workflows/ci.yml.erb
foobara-empty-ruby-project-generator-0.0.6 templates/.github/workflows/ci.yml.erb
foobara-empty-ruby-project-generator-0.0.5 templates/.github/workflows/ci.yml.erb