fix syntax
This commit is contained in:
parent
0e41a733c3
commit
5498d79ff9
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 rake db:setup --trace
|
||||||
bundle exec bin/rails webdrivers:chromedriver:update
|
bundle exec bin/rails webdrivers:chromedriver:update
|
||||||
- name: spec/${{ matrix.suite }}
|
- name: spec/${{ matrix.suite }}
|
||||||
if: ${{ matrix.suite }} != 'leftovers'
|
if: matrix.suite != 'leftovers'
|
||||||
run: bundle exec rspec spec/${{ matrix.suite }}
|
run: bundle exec rspec spec/${{ matrix.suite }}
|
||||||
- name: spec/leftovers
|
- 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"
|
run: bundle exec rspec --exclude-pattern "spec/{models, features, controllers, ability}/**/*_spec.rb, spec/datatables/**/*_spec.rb"
|
||||||
- name: coverage upload ${{ matrix.suite }}
|
- name: coverage upload ${{ matrix.suite }}
|
||||||
uses: codacy/codacy-coverage-reporter-action@master
|
uses: codacy/codacy-coverage-reporter-action@master
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue