-
Notifications
You must be signed in to change notification settings - Fork 44
47 lines (44 loc) · 996 Bytes
/
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
name: ci
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
specs:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
ruby:
- '3.3'
- '3.2'
- '3.1'
- '3.0'
include:
- ruby: '3.3'
coverage: '1'
steps:
- uses: actions/checkout@v3
with:
submodules: true
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true # 'bundle install' and cache gems
- name: Run specs
env:
SIMPLECOV: ${{ matrix.coverage }}
run: |
bundle exec rake test
# coditsu:
# runs-on: ubuntu-latest
# strategy:
# fail-fast: false
# steps:
# - uses: actions/checkout@v2
# with:
# fetch-depth: 0
# - name: Run Coditsu
# run: \curl -sSL https://api.coditsu.io/run/ci | bash