-
Notifications
You must be signed in to change notification settings - Fork 326
83 lines (67 loc) · 2.12 KB
/
Copy pathci.yml
File metadata and controls
83 lines (67 loc) · 2.12 KB
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: CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
ruby: [ ruby-2.4, ruby-2.5, ruby-2.6, ruby-2.7, jruby-9.2.11 ]
os: [ ubuntu-latest ]
steps:
- uses: actions/checkout@v2
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
- uses: actions/cache@v1
with:
path: vendor/bundle
key: bundle-use-ruby-${{ matrix.os }}-${{ matrix.ruby }}-${{ hashFiles('**/Gemfile.lock') }}
restore-keys: bundle-use-ruby-${{ matrix.os }}-${{ matrix.ruby }}-
- name: bundle install
run: |
bundle config set path "vendor/bundle"
bundle config set without "development"
bundle install --jobs 4
- name: bundle exec rspec
env:
JRUBY_OPTS: --debug
run: bundle exec rspec --format progress --force-colour
- name: Prepare Coveralls test coverage report
uses: coverallsapp/github-action@v1.1.2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
flag-name: "${{ matrix.ruby }} @${{ matrix.os }}"
path-to-lcov: ./coverage/lcov/lcov.info
parallel: true
coveralls:
needs: test
runs-on: ubuntu-latest
steps:
- name: Finalize Coveralls test coverage report
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
parallel-finished: true
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: ruby/setup-ruby@v1
with:
ruby-version: 2.4
- uses: actions/cache@v1
with:
path: vendor/bundle
key: bundle-use-ruby-lint-${{ hashFiles('**/Gemfile.lock') }}
restore-keys: bundle-use-ruby-lint-
- name: bundle install
run: |
bundle config set path "vendor/bundle"
bundle config set without "development"
bundle install --jobs 4
- run: bundle exec rubocop --color
- run: bundle exec rake verify_measurements