samg / timetrap

Simple command line timetracker
http://rubygems.org/gems/timetrap
Other
1.48k stars 116 forks source link

Update the `rspec` GitHub Action to properly execute #218

Closed trliner closed 1 month ago

trliner commented 1 month ago

Description

Update .github/workflows/rspec.yml so that the rspec GitHub action executes properly, and pull requests can be merged with greater confidence.

Motivation and Context

The rspec action is failing in the master branch with an error message instructing to migrate to ruby/setup-ruby. That version of setup-ruby automatically installs a bundler version compatible with the specified Ruby version, so it's no longer necessary to install bundler directly. Also, rspec is included as a development dependency within the gemspec, so it's not necessary to install that directly either.

How Has This Been Tested?

The rspec action now runs successfully: https://github.com/samg/timetrap/pull/218/checks

Screenshots (if appropriate):

Types of changes

Checklist:

dechimp commented 1 month ago

Thank you for doing this!