Skip to content

Commit

Permalink
Update Solara
Browse files Browse the repository at this point in the history
  • Loading branch information
MalekKamel committed Sep 24, 2024
1 parent ff8f639 commit 6c0a748
Showing 1 changed file with 21 additions and 2 deletions.
23 changes: 21 additions & 2 deletions .github/workflows/rspec.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,28 @@ on:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:


jobs:
test:
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:
Expand Down

0 comments on commit 6c0a748

Please sign in to comment.