forked from tomgi/git_stats
-
Notifications
You must be signed in to change notification settings - Fork 1
49 lines (46 loc) · 1.18 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
name: Test
on:
- push
- pull_request
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
ruby:
- 2.5
- 2.6
- 2.7
- '3.0'
- 3.1
- 3.2
- ruby-head
active_support_version:
- latest
include:
- ruby: 3.1
active_support_version: ~> 5.2.8
- ruby: 3.1
active_support_version: ~> 6.0.5
- ruby: 3.1
active_support_version: ~> 6.1.6
env:
ACTIVE_SUPPORT_VERSION: ${{ matrix.active_support_version }}
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Checkout git submodules
run: git submodule update --init --recursive
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
- name: Run tests
run: bundle exec rake
continue-on-error: ${{ matrix.ruby == 'ruby-head' }}
- name: Upload coverage report
uses: codecov/codecov-action@v3