Skip to content

Add README.md with project overview and setup instructions #6

Add README.md with project overview and setup instructions

Add README.md with project overview and setup instructions #6

Workflow file for this run

name: Test
on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_dispatch:
# permissions:
# contents: read
jobs:
rspec:
name: Ruby ${{matrix.ruby-version}}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
ruby-version:
- "3.3"
steps:
- uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true
- name: RSpec
run: bundle exec rspec