fix syntax
This commit is contained in:
parent
a397a03721
commit
065466e6d1
1 changed files with 2 additions and 2 deletions
4
.github/workflows/spec.yml
vendored
4
.github/workflows/spec.yml
vendored
|
|
@ -42,10 +42,10 @@ jobs:
|
|||
bundle exec rake db:setup --trace
|
||||
bundle exec bin/rails webdrivers:chromedriver:update
|
||||
- name: spec/${{ matrix.suite }}
|
||||
if: ${{ matrix.suite }} != 'leftovers'
|
||||
if: matrix.suite != 'leftovers'
|
||||
run: bundle exec rspec spec/${{ matrix.suite }}
|
||||
- name: spec/leftovers
|
||||
if: ${{ matrix.suite }} == 'leftovers'
|
||||
if: matrix.suite == 'leftovers'
|
||||
run: bundle exec rspec --exclude-pattern "spec/{models, features, controllers, ability}/**/*_spec.rb, spec/datatables/**/*_spec.rb"
|
||||
- name: coverage upload ${{ matrix.suite }}
|
||||
uses: codacy/codacy-coverage-reporter-action@master
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue