This repository has been archived by the owner on Sep 9, 2024. It is now read-only.
Update rubocop requirement from ~> 1.62.1 to ~> 1.63.4 in the rubocop-dependencies group #223
Workflow file for this run
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
name: Signature | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- '.github/workflows/test_signatures.yml' | |
- 'lib/**' | |
- 'exe/**' | |
- '**.md' | |
- '**.txt' | |
- '**.gemspec' | |
- 'Gemfile' | |
- '.yardopts' | |
- 'Rakefile' | |
pull_request: | |
paths: | |
- '.github/workflows/test_signatures.yml' | |
- 'lib/**' | |
- 'exe/**' | |
- '**.md' | |
- '**.txt' | |
- '**.gemspec' | |
- 'Gemfile' | |
- '.yardopts' | |
- 'Rakefile' | |
jobs: | |
validate_signatures: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ruby/setup-ruby@v1 | |
with: | |
bundler-cache: true # runs 'bundle install' and caches installed gems automatically | |
- run: bundle exec rake validate_signatures >/dev/null |