-
Notifications
You must be signed in to change notification settings - Fork 44
101 lines (97 loc) · 2.89 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
101
name: CI
on:
pull_request:
paths-ignore: [ '**/README.md', '**/CHANGELOG.md' ]
push:
paths-ignore: [ '**/README.md', '**/CHANGELOG.md' ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
ruby: ['3.2', '3.1', '3.0', '2.7', jruby, truffleruby, debug]
continue-on-error: ${{ endsWith(matrix.ruby, 'head') || matrix.ruby == 'debug' }}
steps:
- uses: actions/checkout@v4
- run: rm Gemfile.lock
- name: Setup Ruby ${{ matrix.ruby }}
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
rubygems: latest
bundler-cache: true
- name: Run specs
run: bin/rake test
coverage:
runs-on: ubuntu-latest
env:
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
bundler-cache: true
- name: Generate coverage
run: bin/rake test:coverage
- name: Upload code coverage report to Coveralls
uses: coverallsapp/github-action@v2
with:
file: coverage/lcov.info
debug: true
if: success()
continue-on-error: true
- name: Upload code coverage report to Coveralls Beta
uses: coverallsapp/github-action@v2
with:
file: coverage/lcov.info
coveralls-endpoint: https://beta.coveralls.io
debug: true
if: success()
continue-on-error: true
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: coverage/lcov.info
verbose: true
if: success()
continue-on-error: true
- name: Upload code coverage data to CodeClimate
uses: paambaati/codeclimate-action@v5
with:
coverageLocations: coverage/coverage.json:simplecov
debug: true
if: success()
continue-on-error: true
- name: Upload code coverage data to Codacy
uses: codacy/codacy-coverage-reporter-action@v1
with:
project-token: ${{ secrets.CODACY_PROJECT_TOKEN }}
coverage-reports: coverage/lcov.info
if: success()
continue-on-error: true
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
bundler-cache: true
- name: Enforce codestyle with `standard`
run: bin/rake lint:code
- name: Check Yard syntax with `yard-junk`
run: bin/rake lint:docs
- name: Check for vulnerable dependencies with `bundle-audit`
run: bin/rake lint:deps
docs:
runs-on: ubuntu-latest
continue-on-error: true
steps:
- uses: actions/checkout@v4
- name: Check markdown files for broken links
uses: justinbeckwith/linkinator-action@v1
with:
paths: '*.md, base/**/*.md, sdk/**/*.md'
verbosity: 'INFO'
skip: 'vendor/, astroband/ruby-stellar-sdk/compare'