Skip to content

Commit 4669cd3

Browse files
authored
Merge pull request #111 from tmm1/ci-update
Refresh CI setup
2 parents 6830665 + cd09eab commit 4669cd3

File tree

3 files changed

+21
-21
lines changed

3 files changed

+21
-21
lines changed

.github/workflows/ruby.yml

Lines changed: 20 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,25 @@ jobs:
88
strategy:
99
fail-fast: false
1010
matrix:
11-
ruby_version: ['2.4.x', '2.5.x', '2.6.x']
11+
ruby_version:
12+
- "1.9.3"
13+
- "2.0"
14+
- "2.1"
15+
- "2.2"
16+
- "2.3"
17+
- "2.4"
18+
- "2.5"
19+
- "2.6"
20+
- "2.7"
21+
- "3.0"
22+
- "3.1"
1223

1324
steps:
14-
- uses: actions/checkout@v1
15-
- name: Set up Ruby
16-
uses: actions/setup-ruby@v1
17-
with:
18-
ruby-version: ${{ matrix.ruby_version }}
19-
- name: Run tests
20-
run: |
21-
bundle --version 2>/dev/null || gem install --no-document bundler
22-
bundle install --jobs 4 --retry 3
23-
bundle exec rake
25+
- uses: actions/checkout@v3
26+
- name: Set up Ruby
27+
uses: ruby/setup-ruby@v1
28+
with:
29+
ruby-version: ${{ matrix.ruby_version }}
30+
bundler-cache: true
31+
- name: Run tests
32+
run: bundle exec rake

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,4 @@ TAGS
33
ripper-tags-*gem
44
*.swp
55
Gemfile.lock
6+
.ruby-version

.travis.yml

Lines changed: 0 additions & 10 deletions
This file was deleted.

0 commit comments

Comments
 (0)