Skip to content

Commit

Permalink
CI: Fix grep matching
Browse files Browse the repository at this point in the history
  • Loading branch information
bastelfreak committed Dec 22, 2024
1 parent 4104dae commit d2bbfdf
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,9 @@ jobs:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: check that required tasks are available
run: bundle exec rake --rakefile Rakefile_ci -T | grep --regexp 'rake strings' --regexp 'rake release' --quiet
run: |
bundle exec rake --rakefile Rakefile_ci -T '^strings$' | grep .
bundle exec rake --rakefile Rakefile_ci -T '^release$' | grep .
- name: Verify gem builds
run: gem build --strict --verbose *.gemspec

Expand Down

0 comments on commit d2bbfdf

Please sign in to comment.