File tree Expand file tree Collapse file tree 2 files changed +32
-13
lines changed
Expand file tree Collapse file tree 2 files changed +32
-13
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1+ name : Test
2+
3+ on : [push, pull_request]
4+
5+ jobs :
6+ RSpec :
7+ runs-on : ubuntu-latest
8+ env :
9+ BF_MAINNET_PROJECT_ID : ${{ secrets.BF_MAINNET_PROJECT_ID }}
10+ BF_TESTNET_PROJECT_ID : ${{ secrets.BF_PREVIEW_PROJECT_ID }}
11+ BF_IPFS_PROJECT_ID : ${{ secrets.BF_IPFS_PROJECT_ID }}
12+ strategy :
13+ fail-fast : false
14+ matrix :
15+ ruby :
16+ - " 3.0"
17+ - " 3.1"
18+ - " 3.2"
19+ - " 3.3"
20+ steps :
21+ - uses : actions/checkout@v3
22+ - name : Set up Ruby
23+ uses : ruby/setup-ruby@v1
24+ with :
25+ ruby-version : ${{ matrix.ruby }}
26+ bundler-cache : true
27+ - name : Run tests & publish code coverage
28+ uses : paambaati/codeclimate-action@v3.2.0
29+ env :
30+ CC_TEST_REPORTER_ID : 3ae045b12de0f507d7592d877988b90fef72c273bb3a31289abf3dc1becf8439
31+ with :
32+ coverageCommand : bundle exec rspec
You can’t perform that action at this time.
0 commit comments