-
Notifications
You must be signed in to change notification settings - Fork 8
48 lines (48 loc) · 1.12 KB
/
test.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
---
name: Tests
'on':
push:
branches:
- master
pull_request:
branches:
- master
jobs:
test:
runs-on: ubuntu-20.04
strategy:
fail-fast: false
matrix:
include:
- ruby: 2.5.3
gemfile: Gemfile.cucumber-2.4
- ruby: 2.5.3
gemfile: Gemfile.cucumber-3.0
- ruby: 2.5.3
gemfile: Gemfile.cucumber-3.1
- ruby: 2.6.6
gemfile: Gemfile.cucumber-4.1
- ruby: 2.6.6
gemfile: Gemfile.cucumber-5.3
- ruby: 2.7.2
gemfile: Gemfile.cucumber-4.1
- ruby: 2.7.2
gemfile: Gemfile.cucumber-5.3
- ruby: 3.2.0
gemfile: Gemfile.cucumber-4.1
- ruby: 3.2.0
gemfile: Gemfile.cucumber-5.3
env:
BUNDLE_GEMFILE: "${{ matrix.gemfile }}"
steps:
- uses: actions/checkout@v2
- name: Install ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: "${{ matrix.ruby }}"
- name: Bundle
run: |
gem install bundler:1.17.3
bundle install --no-deployment
- name: Run tests
run: bundle exec rake current_rspec