-
Notifications
You must be signed in to change notification settings - Fork 0
39 lines (31 loc) · 992 Bytes
/
main.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
name: CI
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
build:
runs-on: ubuntu-latest
name: Ruby ${{ matrix.ruby_version }}
strategy:
matrix:
ruby_version: [ruby-head, '3.3', '3.2', '3.1']
env:
COVERAGE: true
CC_TEST_REPORTER_ID: ${{ vars.CC_TEST_REPORTER_ID }}
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby_version }}
bundler-cache: true
continue-on-error: ${{ matrix.ruby_version == 'ruby-head' }}
- run: bundle exec rake
continue-on-error: ${{ matrix.ruby_version == 'ruby-head' }}
- uses: paambaati/codeclimate-action@v8.0.0
# Only upload coverage for the latest Ruby and don't run for PRs from forks
if: ${{ matrix.ruby_version == '3.3' && github.event.pull_request.head.repo.fork == false }}