Skip to content

chore: Namespace & File Path Updates #1358

chore: Namespace & File Path Updates

chore: Namespace & File Path Updates #1358

Workflow file for this run

name: RSpec Tests
on:
push:
branches:
- master
- staging
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
ruby: ['3.4']
name: Run tests on Ruby ${{ matrix.ruby }}
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Install ruby gem dependencies with bundler
run: |
gem install bundler
bundle config path vendor/bundle
bundle install --jobs 4 --retry 3
- name: Run RSpec tests
run: bundle exec rspec