Skip to content

chore: Enable GH Actions workflow #1

chore: Enable GH Actions workflow

chore: Enable GH Actions workflow #1

Workflow file for this run

name: RSpec Tests
on:
pull_request:
branches:
- main
jobs:
rspec:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.2
- name: Install Dependencies
run: |
gem install bundler
bundle install
- name: "Run RSpec Tests"
run: bundle exec rspec