File tree Expand file tree Collapse file tree 8 files changed +15
-24
lines changed Expand file tree Collapse file tree 8 files changed +15
-24
lines changed Original file line number Diff line number Diff line change 1
- name : Test External
1
+ name : RuboCop
2
2
3
3
on : [push, pull_request]
4
4
9
9
CONSOLE_OUTPUT : XTerm
10
10
11
11
jobs :
12
- test :
13
- name : ${{matrix.ruby}} on ${{matrix.os}}
14
- runs-on : ${{matrix.os}}-latest
15
-
16
- strategy :
17
- matrix :
18
- os :
19
- - ubuntu
20
- - macos
21
-
22
- ruby :
23
- - " 3.1"
24
- - " 3.2"
25
- - " 3.3"
12
+ check :
13
+ runs-on : ubuntu-latest
26
14
27
15
steps :
28
16
- uses : actions/checkout@v4
29
17
- uses : ruby/setup-ruby@v1
30
18
with :
31
- ruby-version : ${{matrix. ruby}}
19
+ ruby-version : ruby
32
20
bundler-cache : true
33
21
34
22
- name : Run RuboCop
Original file line number Diff line number Diff line change 33
33
- name : Run tests
34
34
timeout-minutes : 5
35
35
run : bundle exec bake test
36
-
37
- - uses : actions/upload-artifact@v3
36
+
37
+ - uses : actions/upload-artifact@v4
38
38
with :
39
39
name : coverage-${{matrix.os}}-${{matrix.ruby}}
40
40
path : .covered.db
50
50
ruby-version : " 3.3"
51
51
bundler-cache : true
52
52
53
- - uses : actions/download-artifact@v3
53
+ - uses : actions/download-artifact@v4
54
54
55
55
- name : Validate coverage
56
56
timeout-minutes : 5
Original file line number Diff line number Diff line change @@ -16,6 +16,9 @@ Layout/IndentationConsistency:
16
16
Enabled : true
17
17
EnforcedStyle : normal
18
18
19
+ Layout/BlockAlignment :
20
+ Enabled : true
21
+
19
22
Layout/EndAlignment :
20
23
Enabled : true
21
24
EnforcedStyleAlignWith : start_of_line
Original file line number Diff line number Diff line change 1
1
# frozen_string_literal: true
2
2
3
3
# Released under the MIT License.
4
- # Copyright, 2024, by Samuel Williams.
4
+ # Copyright, 2020- 2024, by Samuel Williams.
5
5
6
6
# Update the project documentation with the new version number.
7
7
#
Original file line number Diff line number Diff line change 1
1
# frozen_string_literal: true
2
2
3
3
# Released under the MIT License.
4
- # Copyright, 2019-2023 , by Samuel Williams.
4
+ # Copyright, 2019-2024 , by Samuel Williams.
5
5
6
6
require_relative 'wrapper'
7
7
require_relative 'buffered'
Original file line number Diff line number Diff line change 1
1
# frozen_string_literal: true
2
2
3
3
# Released under the MIT License.
4
- # Copyright, 2019-2023 , by Samuel Williams.
4
+ # Copyright, 2019-2024 , by Samuel Williams.
5
5
# Copyright, 2020-2023, by Bruno Sutic.
6
6
7
7
require 'protocol/http/body/buffered'
Original file line number Diff line number Diff line change 2
2
# frozen_string_literal: true
3
3
4
4
# Released under the MIT License.
5
- # Copyright, 2023, by Samuel Williams.
5
+ # Copyright, 2023-2024 , by Samuel Williams.
6
6
7
7
require 'protocol/http/body/buffered'
8
8
require 'protocol/http/body/deflate'
Original file line number Diff line number Diff line change 1
1
# frozen_string_literal: true
2
2
3
3
# Released under the MIT License.
4
- # Copyright, 2019-2023 , by Samuel Williams.
4
+ # Copyright, 2019-2024 , by Samuel Williams.
5
5
6
6
require 'protocol/http/body/rewindable'
7
7
require 'protocol/http/request'
You can’t perform that action at this time.
0 commit comments