Skip to content

Commit 07e2262

Browse files
authored
Merge pull request voxpupuli#77 from bastelfreak/foo2
CI: Fix grep matching
2 parents 4104dae + 46ced79 commit 07e2262

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/test.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,9 @@ jobs:
4141
ruby-version: ${{ matrix.ruby }}
4242
bundler-cache: true
4343
- name: check that required tasks are available
44-
run: bundle exec rake --rakefile Rakefile_ci -T | grep --regexp 'rake strings' --regexp 'rake release' --quiet
44+
run: |
45+
bundle exec rake --rakefile Rakefile_ci -T '^strings:generate:reference$' | grep --quiet .
46+
bundle exec rake --rakefile Rakefile_ci -T '^release$' | grep --quiet .
4547
- name: Verify gem builds
4648
run: gem build --strict --verbose *.gemspec
4749

0 commit comments

Comments
 (0)