-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove failing codeclimate-action step (#132)
- Drop Ruby 2.4, 2.5, 2.6 support, as all are EOL - Add Ruby 3.2 support - Remove all version locks in gemspec
- Loading branch information
1 parent
115ec38
commit b4700ca
Showing
3 changed files
with
17 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,18 +16,15 @@ jobs: | |
test: | ||
name: Test | ||
runs-on: ubuntu-latest | ||
env: | ||
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }} | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
# See: https://github.com/actions/runner/issues/849 | ||
ruby: [2.4, 2.5, 2.6, 2.7, "3.0", 3.1] | ||
ruby: ["2.7", "3.0", "3.1", "3.2"] | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/checkout@v3 | ||
- uses: ruby/setup-ruby@v1 | ||
with: | ||
bundler-cache: true | ||
ruby-version: ${{ matrix.ruby }} | ||
- run: bundle exec rspec | ||
- uses: paambaati/[email protected] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
3.1.2 | ||
3.2.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters