-
Notifications
You must be signed in to change notification settings - Fork 0
30 lines (24 loc) · 895 Bytes
/
ci.yml
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
name: CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v2
- name: Set up Ruby
uses: ruby/setup-ruby@v1
- name: Build and test with Rake
run: |
gem install bundler
bundle install --jobs=4 --retry=3 --path vendor/bundle
bundle exec rake
- name: Upload test results to BuildPulse for flaky test detection
if: '!cancelled()' # Run this step even when the tests fail. Skip if the workflow is cancelled.
uses: buildpulse/buildpulse-action@main
with:
account: 68192324 # Replace this value with your BuildPulse account ID
repository: 248515673 # Replace this value with your BuildPulse repository ID
path: test/reports
key: ${{ secrets.BUILDPULSE_ACCESS_KEY_ID }}
secret: ${{ secrets.BUILDPULSE_SECRET_ACCESS_KEY }}