Skip to content

Commit

Permalink
Merge pull request #77 from bastelfreak/foo2
Browse files Browse the repository at this point in the history
CI: Fix grep matching
  • Loading branch information
bastelfreak authored Dec 22, 2024
2 parents 4104dae + 46ced79 commit 07e2262
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:generate:reference$' | grep --quiet .
bundle exec rake --rakefile Rakefile_ci -T '^release$' | grep --quiet .
- name: Verify gem builds
run: gem build --strict --verbose *.gemspec

Expand Down

0 comments on commit 07e2262

Please sign in to comment.