-
-
Notifications
You must be signed in to change notification settings - Fork 0
40 lines (40 loc) · 906 Bytes
/
Copy pathmain.yml
File metadata and controls
40 lines (40 loc) · 906 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
33
34
35
36
37
38
39
40
name: Ruby
on:
push:
branches:
- main
- develop
pull_request:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
regression_tests:
timeout-minutes: 3
strategy:
matrix:
os:
- macos-latest
- ubuntu-latest
ruby:
- "3.2"
- "3.3"
- "3.4"
gemfile:
- "puma_6_latest"
- "puma_6.5_latest"
- "puma_7_latest"
runs-on: ${{ matrix.os }}
env:
BUNDLE_GEMFILE: ${{ github.workspace }}/gemfiles/${{ matrix.gemfile }}.gemfile
steps:
- uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Run the default task
run: bundle exec appraisal ${{ matrix.gemfile }} rake