-
Notifications
You must be signed in to change notification settings - Fork 0
83 lines (71 loc) · 1.89 KB
/
coverage.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
name: Code Coverage
on:
push:
branches: [main]
pull_request:
branches: [main]
schedule:
- cron: '0 12 * * 5'
jobs:
coverage:
name: "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:
- uses: actions/checkout@v4
# https://bundler.io/blog/2018/01/17/making-gem-development-a-little-better.html
- run: rm Gemfile.lock
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
rubygems: 3.4.22 # last version to support Ruby 2.7
bundler-cache: true
- run: bundle exec rake coverage:run
- run: sudo apt install tree
- run: tree -a coverage
- uses: actions/upload-artifact@v4
with:
name: "coverage-ruby-${{ matrix.ruby-version }}"
path: coverage/ruby-*
include-hidden-files: true
retention-days: 1
report:
name: "CodeCov (Ruby ${{ matrix.ruby-version }})"
needs: [coverage]
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:
- uses: actions/checkout@v4
- uses: actions/download-artifact@v4
with:
pattern: "coverage-ruby-${{ matrix.ruby-version }}*"
path: coverage
- run: sudo apt install tree
- run: tree -a coverage
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
with:
directory: coverage
token: ${{ secrets.CODECOV_TOKEN }}
flags: "ruby-${{ matrix.ruby-version }}"
fail_ci_if_error: true