Skip to content

Commit fb6a818

Browse files
authored
Merge branch 'master' into verify-hostname
2 parents 6211d5f + a562790 commit fb6a818

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

48 files changed

+1318
-620
lines changed

.github/workflows/test.yml

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# This workflow uses actions that are not certified by GitHub.
2+
# They are provided by a third-party and are governed by
3+
# separate terms of service, privacy policy, and support
4+
# documentation.
5+
# This workflow will download a prebuilt Ruby version, install dependencies and run tests with Rake
6+
# For more information see: https://github.com/marketplace/actions/setup-ruby-jruby-and-truffleruby
7+
8+
name: Test
9+
10+
on:
11+
pull_request:
12+
push:
13+
branches:
14+
- master
15+
16+
jobs:
17+
test:
18+
runs-on: ubuntu-latest
19+
strategy:
20+
matrix:
21+
ruby:
22+
- "3.0"
23+
- "3.1"
24+
- "3.2"
25+
- "3.3"
26+
- "jruby-9.4"
27+
- "truffleruby"
28+
steps:
29+
- uses: actions/checkout@v2
30+
- name: Run tests with Ruby ${{ matrix.ruby }}
31+
run: docker compose run ci-${{ matrix.ruby }}

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,4 @@ Gemfile.lock
88
.bundle
99
bin/
1010
.idea
11+
*.gem

.rubocop.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ AllCops:
44
Exclude:
55
- 'pkg/**/*'
66

7-
Style/ExtraSpacing:
7+
Layout/ExtraSpacing:
88
Enabled: false
99

1010
Lint/AssignmentInCondition:
@@ -13,7 +13,7 @@ Lint/AssignmentInCondition:
1313
Style/ParallelAssignment:
1414
Enabled: false
1515

16-
Style/TrailingCommaInLiteral:
16+
Style/TrailingCommaInArrayLiteral:
1717
EnforcedStyleForMultiline: comma
1818

1919
Style/TrailingCommaInArguments:

0 commit comments

Comments
 (0)