Skip to content

Update CHANGELOG.md #85

Update CHANGELOG.md

Update CHANGELOG.md #85

Workflow file for this run

name: Run RSpec Tests
on:
# Runs on pushes targeting the default branch
push:
branches: ["main", "develop"]
pull_request:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
test_windows:
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: '3.0'
- name: Install dependencies
run: |
gem install bundler
bundle install
- name: Run RSpec
run: bundle exec rspec solara/lib/spec/
test_ubuntu:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: '3.0'
- name: Install dependencies
run: |
gem install bundler
bundle install
- name: Run RSpec
run: bundle exec rspec solara/lib/spec/
test_macos:
runs-on: macos-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: '3.0'
- name: Install dependencies
run: |
gem install bundler
bundle install
- name: Run RSpec
run: bundle exec rspec solara/lib/spec/