-
Notifications
You must be signed in to change notification settings - Fork 15
44 lines (39 loc) · 1 KB
/
integration_tests.yaml
File metadata and controls
44 lines (39 loc) · 1 KB
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
---
name: Integration tests
on:
push:
branches:
- main
pull_request:
branches:
- main
# minimal permissions
permissions:
contents: read
env:
CI: true
jobs:
integration_tests:
name: integration ${{ matrix.cfg.os }} (ruby ${{ matrix.cfg.ruby }})
strategy:
fail-fast: false
matrix:
cfg:
- {os: ubuntu-latest, ruby: '2.7'}
- {os: ubuntu-22.04, ruby: '3.2'} # with openssl 3
- {os: ubuntu-22.04, ruby: 'jruby-9.3.14.0'}
- {os: ubuntu-latest, ruby: 'jruby-9.4.8.0'}
- {os: windows-2025, ruby: '2.7'}
- {os: windows-2025, ruby: '3.2'} # with openssl 3
runs-on: ${{ matrix.cfg.os }}
env:
BUNDLE_SET: 'with integration'
steps:
- name: Checkout current PR
uses: actions/checkout@v4
- name: Rspec checks
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.cfg.ruby }}
bundler-cache: true
- run: bundle exec rake spec_integration