Skip to content

Commit

Permalink
Merge pull request #3 from sealink/PLAT-183-update
Browse files Browse the repository at this point in the history
Plat 183 update
  • Loading branch information
ModernStefan committed Jan 9, 2022
2 parents c5f3b7b + ce1bb4b commit 7b1728d
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 6 deletions.
7 changes: 6 additions & 1 deletion .github/workflows/ruby.yml
Expand Up @@ -5,7 +5,7 @@ jobs:
strategy:
fail-fast: false
matrix:
ruby: ["2.6", "2.7", "3.0"]
ruby: ["2.6", "2.7", "3.0", "3.1.0"]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
Expand All @@ -15,3 +15,8 @@ jobs:
bundler-cache: true
- run: bundle exec standardrb
- run: bundle exec rspec spec
- name: Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
path-to-lcov: coverage/lcov.info
1 change: 1 addition & 0 deletions .gitignore
Expand Up @@ -3,3 +3,4 @@ vendor
*.gem
Gemfile.lock
coverage
.bundle
2 changes: 1 addition & 1 deletion .ruby-version
@@ -1 +1 @@
3.0.2
3.1.0
4 changes: 4 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,9 @@
# Change Log

## Unreleased

- [PLAT-183] Use github action in place of coveralls gem, build against ruby 3.1

## 0.2.0

- [PLAT-147] Remove any double slash from the url
Expand Down
2 changes: 0 additions & 2 deletions s3-toolkit.gemspec
Expand Up @@ -26,10 +26,8 @@ Gem::Specification.new do |spec|
spec.add_dependency "dry-cli"

spec.add_development_dependency "coverage-kit"
spec.add_development_dependency "coveralls_reborn"
spec.add_development_dependency "nokogiri"
spec.add_development_dependency "pry-byebug"
spec.add_development_dependency "rspec"
spec.add_development_dependency "standard"
spec.add_development_dependency "simplecov-rcov"
end
2 changes: 0 additions & 2 deletions spec/support/coverage_loader.rb
@@ -1,7 +1,5 @@
# frozen_string_literal: true

require "simplecov-rcov"
require "coveralls"
require "coverage/kit"

Coverage::Kit.setup(minimum_coverage: 100.0)

0 comments on commit 7b1728d

Please sign in to comment.