Remove ruby version requirement #13
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |