-
Notifications
You must be signed in to change notification settings - Fork 4
100 lines (89 loc) · 3.25 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
name: CI
on: [push, pull_request]
jobs:
rspec:
strategy:
fail-fast: false
matrix:
include:
- { name: ruby 2.5.x, ruby: 2.5, gemfile: null, coverage: 0 }
- { name: ruby 2.6.x, ruby: 2.6, gemfile: null, coverage: 0 }
- { name: ruby 2.7.x, ruby: 2.7, gemfile: null, coverage: 0 }
- { name: ruby 3.0.x, ruby: '3.0', gemfile: null, coverage: 0 }
- { name: ruby 3.1.x, ruby: 3.1, gemfile: null, coverage: 0 }
- { name: ruby 3.2.x, ruby: 3.2, gemfile: null, coverage: 1 }
- { name: ruby head, ruby: head, gemfile: null, coverage: 0 }
- { name: activesupport 7.x, ruby: 3.2, gemfile: "gem 'activesupport', '~> 7.0'", coverage: 0 }
- { name: activesupport 6.x, ruby: 3.2, gemfile: "gem 'activesupport', '~> 6.0'", coverage: 0 }
- { name: activesupport 5.x, ruby: 3.2, gemfile: "gem 'activesupport', '~> 5.0'", coverage: 0 }
- { name: activesupport 4.x, ruby: 3.2, gemfile: "gem 'activesupport', '~> 4.0'", coverage: 0 }
- { name: activesupport 3.x, ruby: 3.2, gemfile: "gem 'activesupport', '~> 3.0'", coverage: 0 }
- { name: haml 6.x, ruby: 3.2, gemfile: "gem 'haml', '~> 6.0'", coverage: 0 }
- { name: haml 5.x, ruby: 3.2, gemfile: "gem 'haml', '~> 5.0'", coverage: 0 }
- { name: slim 4.x, ruby: 3.2, gemfile: "gem 'slim', '~> 4.0'", coverage: 0 }
- { name: slim 3.x, ruby: 3.2, gemfile: "gem 'slim', '~> 3.0'", coverage: 0 }
continue-on-error: ${{ endsWith(matrix.ruby, 'head') }}
runs-on: ubuntu-latest
env:
COVERAGE: ${{ matrix.coverage }}
name: rspec (${{matrix.name }})
steps:
- uses: actions/checkout@v3
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- run: echo "${{ matrix.gemfile }}" >> Gemfile; bundle update
if: ${{ matrix.gemfile }}
- run: bundle exec rspec
- uses: actions/upload-artifact@v2
with:
name: coverage-report
path: 'coverage/*'
retention-days: 1
if: ${{ matrix.coverage && failure() }}
rubocop:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: ruby/setup-ruby@v1
with:
ruby-version: 3.1
bundler-cache: true
- run: bundle exec rubocop
spellr:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: ruby/setup-ruby@v1
with:
ruby-version: 3.1
bundler-cache: true
- run: bundle exec spellr
leftovers:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: ruby/setup-ruby@v1
with:
ruby-version: 3.1
bundler-cache: true
- run: bundle exec leftovers
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: ruby/setup-ruby@v1
with:
ruby-version: 3.1
bundler-cache: true
- run: bundle exec rake build
autoload:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: ruby/setup-ruby@v1
with:
ruby-version: 3.1
bundler-cache: true
- run: bundle exec rake test_autoload[10]