Skip to content

Commit

Permalink
Add RSpec tests GitHub Action
Browse files Browse the repository at this point in the history
This commit adds a GitHub Action to run the test suite.
  • Loading branch information
smaboshe committed Apr 24, 2024
1 parent cafe43f commit fd6dbc4
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/rspec-tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
---
name: "RSpec Tests"

on: [push]

jobs:
test:
runs-on: ubuntu-latest
services:
postgres:
image: postgres:14-alpine
ports:
- "5432:5432"
env:
POSTGRES_DB: rails_test
POSTGRES_USER: rails
POSTGRES_PASSWORD: password

env:
RAILS_ENV: test
DATABASE_URL: "postgres://rails:password@localhost:5432/rails_test"

steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install Ruby and gems
uses: ruby/setup-ruby@v1
with:
bundler-cache: true
- run: bundle exec rspec

0 comments on commit fd6dbc4

Please sign in to comment.