Skip to content
This repository was archived by the owner on Oct 18, 2024. It is now read-only.

Commit 2a258db

Browse files
authored
Merge pull request #330 from takkii/develop
Update.
2 parents 4af08e0 + fdf6a0c commit 2a258db

File tree

2 files changed

+7
-20
lines changed

2 files changed

+7
-20
lines changed

.github/workflows/minitest_on_pr_merge.yml

+3-6
Original file line numberDiff line numberDiff line change
@@ -10,17 +10,14 @@ jobs:
1010
runs-on: ubuntu-latest
1111
strategy:
1212
matrix:
13-
ruby-version: ['3.0', '3.1']
13+
ruby-version: ['3.0.5', '3.1.3']
1414

1515
steps:
1616
- uses: actions/checkout@v3
17-
# To automatically get bug fixes and new Ruby versions for ruby/setup-ruby,
18-
# change this to (see https://github.com/ruby/setup-ruby#versioning):
19-
# uses: ruby/setup-ruby@v1
20-
- uses: ruby/setup-ruby@2b019609e2b0f1ea1a2bc8ca11cb82ab46ada124
17+
- uses: ruby/setup-ruby@v1
2118
with:
2219
ruby-version: ${{ matrix.ruby-version }}
23-
- run: bundle install
20+
bundler-cache: true
2421
- run: mv .octocov.base.yml .octocov.yml
2522
- name: Run tests
2623
run: bundle exec rake

.github/workflows/ruby.yml

+4-14
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,4 @@
1-
# This workflow uses actions that are not certified by GitHub.
2-
# They are provided by a third-party and are governed by
3-
# separate terms of service, privacy policy, and support
4-
# documentation.
5-
# This workflow will download a prebuilt Ruby version, install dependencies and run tests with Rake
6-
# For more information see: https://github.com/marketplace/actions/setup-ruby-jruby-and-truffleruby
7-
8-
name: Ruby
1+
name: Ruby CI
92

103
on:
114
push:
@@ -22,17 +15,14 @@ jobs:
2215
runs-on: ubuntu-latest
2316
strategy:
2417
matrix:
25-
ruby-version: ['3.0', '3.1']
18+
ruby-version: ['3.0.5', '3.1.3']
2619

2720
steps:
2821
- uses: actions/checkout@v3
29-
# To automatically get bug fixes and new Ruby versions for ruby/setup-ruby,
30-
# change this to (see https://github.com/ruby/setup-ruby#versioning):
31-
# uses: ruby/setup-ruby@v1
32-
- uses: ruby/setup-ruby@2b019609e2b0f1ea1a2bc8ca11cb82ab46ada124
22+
- uses: ruby/setup-ruby@v1
3323
with:
3424
ruby-version: ${{ matrix.ruby-version }}
35-
- run: bundle install
25+
bundler-cache: true
3626
- name: Run tests
3727
run: bundle exec rake
3828
- name: Coverage Report by octocov (in this pull request)

0 commit comments

Comments
 (0)