Sha256: 56847d4a180a4527e838182de15e8a73696c82ff1bec8a37e3da8973c649d2cc

Contents?: true

Size: 661 Bytes

Versions: 11

Compression:

Stored size: 661 Bytes

Contents

name: Run Specs

on:
  push:
    branches:
      - main
  pull_request:
    branches:
      - main

jobs:
  test:
    name: Run Tests
    runs-on: ubuntu-latest

    steps:
      # Checkout the code
      - name: Checkout code
        uses: actions/checkout@v3

      # Set up Ruby
      - name: Set up Ruby
        uses: ruby/setup-ruby@v1
        with:
          ruby-version: '3.2' # Specify your gem's Ruby version
          bundler-cache: true # Cache gems to speed up the workflow

      # Install dependencies
      - name: Install dependencies
        run: bundle install

      # Run RSpec tests
      - name: Run specs
        run: bundle exec rspec

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
api-regulator-0.1.11 .github/workflows/spec.yml
api-regulator-0.1.10 .github/workflows/spec.yml
api-regulator-0.1.9 .github/workflows/spec.yml
api-regulator-0.1.8 .github/workflows/spec.yml
api-regulator-0.1.7 .github/workflows/spec.yml
api-regulator-0.1.6 .github/workflows/spec.yml
api-regulator-0.1.5 .github/workflows/spec.yml
api-regulator-0.1.4 .github/workflows/spec.yml
api-regulator-0.1.3 .github/workflows/spec.yml
api-regulator-0.1.2 .github/workflows/spec.yml
api-regulator-0.1.1 .github/workflows/spec.yml