Skip to content

Commit 9b2ccd5

Browse files
committed
Update push branches in Ruby workflow to include ci-fix
1 parent 9308e6e commit 9b2ccd5

File tree

1 file changed

+11
-12
lines changed

1 file changed

+11
-12
lines changed

.github/workflows/ruby.yml

Lines changed: 11 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -9,26 +9,25 @@ name: Ruby
99

1010
on:
1111
push:
12-
branches: [ main ]
12+
branches: [ main, ci-fix ]
1313
pull_request:
1414
branches: [ main ]
1515

1616
jobs:
1717
test:
18-
1918
runs-on: ubuntu-latest
2019
strategy:
2120
matrix:
2221
ruby-version: ['2.6', '2.7', '3.0', '3.1', '3.2', '3.3']
2322

2423
steps:
25-
- uses: actions/checkout@v4
26-
- name: Set up Ruby
27-
# To automatically get bug fixes and new Ruby versions for ruby/setup-ruby,
28-
# change this to (see https://github.com/ruby/setup-ruby#versioning):
29-
uses: ruby/setup-ruby@v1
30-
with:
31-
ruby-version: ${{ matrix.ruby-version }}
32-
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
33-
- name: Run tests
34-
run: bundle exec rspec spec
24+
- uses: actions/checkout@v4
25+
# To automatically get bug fixes and new Ruby versions for ruby/setup-ruby,
26+
# change this to (see https://github.com/ruby/setup-ruby#versioning):
27+
- name: Set up Ruby
28+
uses: ruby/setup-ruby@v1
29+
with:
30+
ruby-version: ${{ matrix.ruby-version }}
31+
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
32+
- name: Run tests
33+
run: bundle exec rspec spec

0 commit comments

Comments
 (0)