Sha256: 03a34da9917ac72aacbdc2d5658803bbad9190aeb43b0b5a09ddbb4bdc3c4dcc

Contents?: true

Size: 524 Bytes

Versions: 4

Compression:

Stored size: 524 Bytes

Contents

name: Continuous Integration

on: [push, pull_request]

jobs:
  build:
    name: Build
    runs-on: ubuntu-latest

    steps:
      - name: Checkout
        uses: actions/checkout@v4

      - name: Ruby Setup
        uses: ruby/setup-ruby@v1
        with:
          bundler-cache: true

      - name: Build
        run: bundle exec rake

<% if configuration.build_simple_cov %>
      - name: SimpleCov Report
        uses: actions/upload-artifact@v4
        with:
          name: coverage
          path: coverage
<% end %>

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
rubysmith-6.10.0 lib/rubysmith/templates/%project_name%/.github/workflows/ci.yml.erb
rubysmith-6.9.0 lib/rubysmith/templates/%project_name%/.github/workflows/ci.yml.erb
rubysmith-6.6.0 lib/rubysmith/templates/%project_name%/.github/workflows/ci.yml.erb
rubysmith-6.5.0 lib/rubysmith/templates/%project_name%/.github/workflows/ci.yml.erb