Skip to content

Commit a66ef1b

Browse files
committed
ci: run tests
Signed-off-by: Ruby Iris Juric <[email protected]>
1 parent 1258d77 commit a66ef1b

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

.github/workflows/test.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
with:
28+
json-path: /tmp/rspec_report.json

0 commit comments

Comments
 (0)