forked from makandra/angular_xss
-
Notifications
You must be signed in to change notification settings - Fork 0
58 lines (56 loc) · 1.39 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
49
50
51
52
53
54
55
56
57
58
---
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.9
gemfile: Gemfile.rails-3.2
- ruby: 2.5.9
gemfile: Gemfile.rails-4.2.haml-4
- ruby: 2.5.9
gemfile: Gemfile.rails-4.2.haml-5
- ruby: 2.5.9
gemfile: Gemfile.rails-5.1.haml-4
- ruby: 2.5.9
gemfile: Gemfile.rails-5.1.haml-5
- ruby: 2.7.2
gemfile: Gemfile.rails-5.1.haml-4
- ruby: 2.7.2
gemfile: Gemfile.rails-5.1.haml-5
- ruby: 2.7.2
gemfile: Gemfile.rails-6.1.haml-5
- ruby: 2.7.2
gemfile: Gemfile.rails-7.0.haml-5
- ruby: 3.0.1
gemfile: Gemfile.rails-5.1.haml-4
- ruby: 3.0.1
gemfile: Gemfile.rails-5.1.haml-5
- ruby: 3.0.1
gemfile: Gemfile.rails-6.1.haml-5
- ruby: 3.0.1
gemfile: Gemfile.rails-7.0.haml-5
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:2.1.4
bundle install --no-deployment
- name: Run tests
run: bundle exec rspec