Skip to content

Commit d74fba4

Browse files
committed
fix: correct branch name
1 parent 154c3fd commit d74fba4

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/CI.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ on:
33
push:
44
pull_request:
55
branches:
6-
- master
6+
- main
77

88
jobs:
99
unit-openapi-ruby-sdk:
@@ -12,10 +12,10 @@ jobs:
1212
- uses: actions/checkout@v4
1313
- uses: ruby/setup-ruby@ec02537da5712d66d4d50a0f33b7eb52773b5ed1
1414
with:
15-
ruby-version: "3.2.0"
15+
ruby-version: "3.1"
1616

1717
- name: Install dependencies
18-
uses: bundle install
18+
run: bundle install
1919

2020
- name: Execute tests
2121
run: bundle exec rspec

.github/workflows/publish-gem.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
ruby-version: "3.2.0"
1313

1414
- name: Install dependencies
15-
uses: bundle install
15+
run: bundle install
1616

1717
- name: Execute Rake build
1818
run: bundle exec rake build

0 commit comments

Comments
 (0)