-
Notifications
You must be signed in to change notification settings - Fork 0
33 lines (30 loc) · 824 Bytes
/
ci.yml
File metadata and controls
33 lines (30 loc) · 824 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
name: CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number }}
cancel-in-progress: true
jobs:
run_specs:
name: Rspec
runs-on: blacksmith-4vcpu-ubuntu-2404
timeout-minutes: 10
env:
CI: true
RAILS_ENV: test
steps:
- uses: actions/checkout@v6
- uses: ruby/setup-ruby@v1
with: { bundler-cache: true }
- run: bundle exec rspec --format documentation --format RspecJunitFormatter --out tmp/rspec.xml
- uses: mikepenz/action-junit-report@v6
if: success() || failure()
with:
check_name: Rspec Test Results
report_paths: tmp/rspec.xml
detailed_summary: true
env:
GITHUB_STEP_SUMMARY: true