Remove the note about new information being added when the preview of SDK 4 comes out #249
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: Run tests | |
| on: | |
| push: | |
| pull_request: | |
| jobs: | |
| test: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Setup Ruby | |
| uses: ruby/setup-ruby@v1 | |
| with: | |
| bundler-cache: true | |
| - name: Run tests | |
| run: bundle exec rspec -f json -o /tmp/rspec_report.json -f progress | |
| env: | |
| SKIP_DOCS: true # TODO: remove once we can get docs artifacts in here easily | |
| - name: Upload report artifact | |
| uses: actions/upload-artifact@v5 | |
| if: always() | |
| with: | |
| name: test-report | |
| path: /tmp/rspec_report.json | |
| if-no-files-found: error |