-
Notifications
You must be signed in to change notification settings - Fork 0
59 lines (51 loc) · 1.34 KB
/
ci.yml
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
tests:
name: "RSpec / Ruby ${{ matrix.ruby-version }}"
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
ruby-version: [2.7, 3.0, 3.1, 3.2, 3.3, head]
timeout-minutes: 3
steps:
- name: Checkout code
uses: actions/checkout@v4
# https://bundler.io/blog/2018/01/17/making-gem-development-a-little-better.html
- name: Remove bundler lockfile
run: rm Gemfile.lock
- name: Install Ruby and gems
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
rubygems: 3.4.22 # last version to support Ruby 2.7
bundler: latest
bundler-cache: true
- name: Run Rspec
run: |
bundle exec rake spec
bundler-user-journey:
name: "OS ${{ matrix.os }}"
runs-on: ${{matrix.os}}-latest
strategy:
fail-fast: false
matrix:
os: [ubuntu, macos, windows]
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install Ruby and gems
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.3
bundler: latest
- name: User Journey
run: spec/integration/bundler_user_journey.sh
shell: bash