-
Notifications
You must be signed in to change notification settings - Fork 0
66 lines (55 loc) · 1.28 KB
/
test.yml
File metadata and controls
66 lines (55 loc) · 1.28 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
---
name: test
on:
- push
- pull_request
- workflow_dispatch
jobs:
rspec:
name: "${{ matrix.ruby }} / ${{ matrix.adapter }}"
runs-on: ubuntu-24.04
strategy:
fail-fast: false
matrix:
ruby:
- "3.4"
- "3.3"
- "3.2"
- "3.1"
adapter:
- typhoeus
- typhoeus-sync
env:
BUNDLE_WITHOUT: development
ADAPTER: ${{ matrix.adapter }}
steps:
- uses: actions/checkout@master
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
env:
BUNDLE_JOBS: 4
BUNDLE_RETRY: 3
- run: |
bundle exec rspec --color --format documentation
- uses: codecov/codecov-action@v5
with:
fail_ci_if_error: true
token: ${{ secrets.CODECOV_TOKEN }}
rubocop:
name: rubocop
runs-on: ubuntu-24.04
env:
BUNDLE_WITHOUT: development
steps:
- uses: actions/checkout@master
- uses: ruby/setup-ruby@v1
with:
ruby-version: "4.0.1"
bundler-cache: true
env:
BUNDLE_WITHOUT: development
BUNDLE_JOBS: 4
BUNDLE_RETRY: 3
- run: bundle exec rubocop --parallel --fail-level E