We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 43bc0e7 commit 785dc84Copy full SHA for 785dc84
2 files changed
.github/workflows/ruby.yml
@@ -0,0 +1,27 @@
1
+name: Ruby
2
+
3
+on:
4
+ push:
5
+ branches: [ "main" ]
6
+ pull_request:
7
8
9
+permissions:
10
+ contents: read
11
12
+jobs:
13
+ test:
14
+ runs-on: ubuntu-latest
15
+ strategy:
16
+ matrix:
17
+ ruby-version: ['3.2', '3.3', '3.4']
18
19
+ steps:
20
+ - uses: actions/checkout@v4
21
+ - name: Set up Ruby
22
+ uses: ruby/setup-ruby@v1
23
+ with:
24
+ ruby-version: ${{ matrix.ruby-version }}
25
+ bundler-cache: true # runs 'bundle install' and caches installed gems automatically
26
+ - name: Run tests
27
+ run: bundle exec rake
Gemfile
@@ -4,4 +4,5 @@ gemspec
group :test do
gem 'minitest'
+ gem 'rake'
end
0 commit comments