Skip to content

Commit

Permalink
Enable GH Actions workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
VonTeacher committed Nov 17, 2023
1 parent 4509f6d commit e64e5d8
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/rspec_tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
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

0 comments on commit e64e5d8

Please sign in to comment.