Skip to content

Bump version to v0.1.13 #7

Bump version to v0.1.13

Bump version to v0.1.13 #7

Workflow file for this run

name: RSpec Test Suite
on:
push:
branches: [ main ]
pull_request:
branches: [ "*" ]
jobs:
test:
strategy:
fail-fast: false
matrix:
ruby: ['3.2', '3.3', '3.4', '4.0']
runs-on: ubuntu-latest
steps:
- name: Checkout Commit
uses: actions/checkout@v6
- name: Install Ruby and Dependencies
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
- name: Run RSpec Tests
run: bundle exec rspec