Skip to content

Commit

Permalink
ci: Run Sidekiq-Pro test suites if license present (#179)
Browse files Browse the repository at this point in the history
  • Loading branch information
ixti committed Jan 19, 2024
1 parent 8dbc66d commit b4027cc
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,13 @@ jobs:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true

- run: bundle exec rake test
- name: Run test suites
run: |
if [[ -n "${BUNDLE_GEMS__CONTRIBSYS__COM}" ]]; then
cp .rspec.sidekiq-pro .rspec-local
fi
bundle exec rake test
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
Expand Down

0 comments on commit b4027cc

Please sign in to comment.