We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1258d77 commit a66ef1bCopy full SHA for a66ef1b
.github/workflows/test.yml
@@ -0,0 +1,28 @@
1
+name: Run tests
2
+
3
+on:
4
+ push:
5
+ pull_request:
6
7
+jobs:
8
+ build:
9
+ runs-on: ubuntu-24.04
10
11
+ steps:
12
+ - name: Checkout
13
+ uses: actions/checkout@v4
14
15
+ - name: Setup Ruby
16
+ uses: ruby/setup-ruby@v1
17
+ with:
18
+ bundler-cache: true
19
20
+ - name: Run tests
21
+ run: bundle exec rspec -f json -o /tmp/rspec_report.json -f progress
22
+ env:
23
+ SKIP_DOCS: true # TODO: remove once we can get docs artifacts in here easily
24
25
+ - name: Report results
26
+ uses: SonicGarden/rspec-report-action@v6
27
28
+ json-path: /tmp/rspec_report.json
0 commit comments