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 6043579 commit cdf0566Copy full SHA for cdf0566
.github/workflows/CI.yaml
@@ -1,9 +1,9 @@
1
name: CI
2
on:
3
- push:
4
pull_request:
+ push:
5
branches:
6
- - master
+ - main
7
8
jobs:
9
unit-openapi-ruby-sdk:
@@ -12,13 +12,16 @@ jobs:
12
- uses: actions/checkout@v4
13
- uses: ruby/setup-ruby@ec02537da5712d66d4d50a0f33b7eb52773b5ed1
14
with:
15
- ruby-version: "3.3.6"
+ ruby-version: "3.1"
16
17
- name: Install dependencies
18
- uses: gradle/gradle-build-action@v2
+ run: bundle install
19
20
- name: Execute tests
21
run: bundle exec rspec
22
+ env:
23
+ UNIT_TOKEN: ${{ secrets.UNIT_TOKEN }}
24
+ TEST_PLAID_TOKEN: ${{ secrets.TEST_PLAID_TOKEN }}
25
26
- name: Execute Rake build
27
run: bundle exec rake build
.github/workflows/publish-gem.yaml
0 commit comments