Skip to content

Add gem badge to README #11

Add gem badge to README

Add gem badge to README #11

Workflow file for this run

name: Rspec
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
name: Run specs on Ruby ${{ matrix.ruby_version }}
runs-on: ubuntu-latest
strategy:
matrix:
ruby_version: ['3.1']
fail-fast: false
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Ruby ${{ matrix.ruby_version }}
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby_version }}
bundler-cache: true # This will automatically set up bundler and cache gems
- name: Run specs
run: bundle exec rspec