Skip to content

Remove ruby version requirement #13

Remove ruby version requirement

Remove ruby version requirement #13

Workflow file for this run

name: E2E and Content Validation Tests
on: [pull_request]
jobs:
content-validation:
name: Content validation tests
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: '3.3'
bundler-cache: true
- name: Run content validation tests
run: bundle exec rspec spec/integration/content/ --format documentation
command-and-menu-tests:
name: Command routing and menu tests
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: '3.3'
bundler-cache: true
- name: Run command routing tests
run: bundle exec rspec spec/commands/ --format documentation
- name: Run menu tests
run: bundle exec rspec spec/menus/ --format documentation