We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4f0ebc9 commit bc7f9dbCopy full SHA for bc7f9db
.github/workflows/build.yml
@@ -0,0 +1,31 @@
1
+# This workflow will download a prebuilt Ruby version, install dependencies and
2
+# run tests with Rake
3
+# For more information see: https://github.com/marketplace/actions/setup-ruby-jruby-and-truffleruby
4
+
5
+name: Build
6
7
+"on": push
8
9
+env:
10
+ RUBYOPTS: "--disable-did-you-mean"
11
+ JAVA_OPTS: "-Djava.security.egd=file:/dev/urandom"
12
13
+jobs:
14
+ rake:
15
+ runs-on: ubuntu-latest
16
17
+ strategy:
18
+ fail-fast: false
19
+ matrix:
20
+ ruby: ["3.0", "3.1", "3.2"]
21
22
+ steps:
23
+ - uses: actions/checkout@v3
24
25
+ - name: Set up Ruby
26
+ uses: ruby/setup-ruby@v1
27
+ with:
28
+ ruby-version: ${{ matrix.ruby }}
29
+ bundler-cache: true
30
+ - name: Run tests
31
+ run: bundle exec rake
.travis.yml
0 commit comments