Skip to content

Commit

Permalink
ci: Add ruby-3.3 to the matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
ixti committed Feb 5, 2024
1 parent aaafb69 commit 017f8a6
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 28 deletions.
26 changes: 4 additions & 22 deletions .github/workflows/ci.yml
Expand Up @@ -16,11 +16,11 @@ jobs:

strategy:
matrix:
ruby: [ ruby-3.0, ruby-3.1, ruby-3.2 ]
ruby: [ ruby-3.0, ruby-3.1, ruby-3.2, ruby-3.3 ]
os: [ ubuntu-latest ]

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- uses: ruby/setup-ruby@v1
with:
Expand All @@ -30,14 +30,6 @@ jobs:
- name: bundle exec rspec
run: bundle exec rspec --format progress --force-colour

- name: Prepare Coveralls test coverage report
uses: coverallsapp/github-action@v1.1.2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
flag-name: "${{ matrix.ruby }} @${{ matrix.os }}"
path-to-lcov: ./coverage/lcov/lcov.info
parallel: true

test-flaky:
runs-on: ${{ matrix.os }}

Expand All @@ -47,7 +39,7 @@ jobs:
os: [ ubuntu-latest ]

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- uses: ruby/setup-ruby@v1
with:
Expand All @@ -58,21 +50,11 @@ jobs:
continue-on-error: true
run: bundle exec rspec --format progress --force-colour

coveralls:
needs: test
runs-on: ubuntu-latest
steps:
- name: Finalize Coveralls test coverage report
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
parallel-finished: true

lint:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- uses: ruby/setup-ruby@v1
with:
Expand Down
6 changes: 1 addition & 5 deletions CHANGELOG.md
Expand Up @@ -7,12 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Changed

- **BREAKING** Process features in reverse order (#766)

### Removed

- **BREAKING** Drop Ruby 2.x support

[unreleased]: https://github.com/httprb/http/compare/v5.1.1...HEAD
[unreleased]: https://github.com/httprb/http/compare/v5.2.0...main
1 change: 1 addition & 0 deletions README.md
Expand Up @@ -112,6 +112,7 @@ the following Ruby versions:
- Ruby 3.0
- Ruby 3.1
- Ruby 3.2
- Ruby 3.3
- JRuby 9.4

If something doesn't work on one of these versions, it's a bug.
Expand Down
2 changes: 1 addition & 1 deletion lib/http/version.rb
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module HTTP
VERSION = "5.1.1"
VERSION = "5.2.0"
end

0 comments on commit 017f8a6

Please sign in to comment.