-
Notifications
You must be signed in to change notification settings - Fork 16
62 lines (51 loc) · 1.28 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
name: CI
on:
push:
branches:
- master
pull_request:
branches:
- "*"
jobs:
build:
name: Ruby ${{ matrix.ruby }}
strategy:
fail-fast: true
matrix:
ruby:
- "2.6.0"
- "3.0.0"
- "head"
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install dependent libraries
run: sudo apt-get install libpq-dev
- name: Install Ruby ${{ matrix.ruby }}
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true # 'bundle install' and cache
- name: Check code style
run: bundle exec rubocop
continue-on-error: false
- name: Run tests
run: bundle exec rake --trace
continue-on-error: false
- name: Report coverage
uses: coverallsapp/github-action@v2
with:
flag-name: ruby-${{ matrix.ruby }}
parallel: true
coveralls-done:
if: always()
name: Finish coverage reporting
runs-on: ubuntu-latest
needs: build
steps:
- name: Coveralls done
uses: coverallsapp/github-action@v2
with:
parallel-finished: true
carryforward: "ruby-2.6.0,ruby-3.0.0,ruby-head"