We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 30c6cf1 commit 67a5e1eCopy full SHA for 67a5e1e
1 file changed
.github/workflows/ci.yml
@@ -0,0 +1,32 @@
1
+name: CI
2
+
3
+on:
4
+ push:
5
+ pull_request:
6
7
+jobs:
8
+ test:
9
+ name: Ruby ${{ matrix.ruby }}
10
+ runs-on: ubuntu-latest
11
12
+ strategy:
13
+ fail-fast: false
14
+ matrix:
15
+ ruby:
16
+ - "3.0"
17
+ - "4.0"
18
+ - truffleruby
19
+ - jruby
20
21
+ steps:
22
+ - name: Check out repository
23
+ uses: actions/checkout@v4
24
25
+ - name: Set up Ruby
26
+ uses: ruby/setup-ruby@v1
27
+ with:
28
+ ruby-version: ${{ matrix.ruby }}
29
+ bundler-cache: true
30
31
+ - name: Run tests
32
+ run: bundle exec rake test
0 commit comments