Skip to content

Commit 8f2bf2e

Browse files
committed
Use GitHub actions for testing [wip]
1 parent 9d1775b commit 8f2bf2e

File tree

2 files changed

+30
-30
lines changed

2 files changed

+30
-30
lines changed

.github/workflows/ci.yml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name: Ruby
2+
3+
on:
4+
- push
5+
- pull_request
6+
7+
jobs:
8+
test:
9+
runs-on: ubuntu-latest
10+
11+
strategy:
12+
matrix:
13+
ruby: ['3.2', '3.1', '3.0', '2.7', '2.6', '2.5', '2.4' ]
14+
gemfile: [gemfiles/as4.gemfile, gemfiles/as5.gemfile, gemfiles/as6.gemfile]
15+
exclude:
16+
- ruby-version: 2.3
17+
gemfile: gemfiles/as6.gemfile
18+
- ruby-version: 2.4
19+
gemfile: gemfiles/as6.gemfile
20+
- ruby-version: 2.7
21+
gemfile: gemfiles/as4.gemfile
22+
23+
steps:
24+
- uses: actions/checkout@v3
25+
- uses: ruby/setup-ruby@v1
26+
with:
27+
ruby-version: ${{ matrix.ruby }}
28+
bundler-cache: true
29+
30+
- run: bundle exec rake

.travis.yml

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

0 commit comments

Comments
 (0)