Skip to content

github workflows

github workflows #2

Workflow file for this run

#
# Github rspec unit test workflow
#
name: CI RSpec Tests
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
ruby:
- '3.2.0'
services:
redis:
image: redis
ports: ["6379:6379"]
steps:
- uses: actions/checkout@v2
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Run unit tests
run: bundle exec rspec