-
Notifications
You must be signed in to change notification settings - Fork 23
32 lines (32 loc) · 831 Bytes
/
ruby.yml
File metadata and controls
32 lines (32 loc) · 831 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
name: Test
on: [push, pull_request]
jobs:
test:
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
ruby:
- "3.2"
- "3.3"
- "3.4"
- "4.0"
gemfiles:
- Gemfile
- Gemfile.multi_json
- Gemfile.rack2
- Gemfile.rack30
- Gemfile.rails6
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
- run: bundle lock --add-platform x86_64-linux && bundle install && bundle exec rake
env:
BUNDLE_GEMFILE: ${{ matrix.gemfile }}