Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Revert hotfix #233

Closed
wants to merge 2 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 10 additions & 12 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,12 +66,11 @@ jobs:
if: matrix.ruby >= 'ruby:2.4'
continue-on-error: true

- run: bundle exec rspec
timeout-minutes: 1
continue-on-error: ${{ matrix.allow_failures == 'true' }}

- run: bundle exec ruby examples/all.rb
timeout-minutes: 1
- name: Run test
run: |
set -xe
bundle exec rspec
bundle exec ruby examples/all.rb
continue-on-error: ${{ matrix.allow_failures == 'true' }}

- name: Teardown Code Climate Test Reporter
Expand All @@ -82,12 +81,11 @@ jobs:
if: matrix.ruby >= 'ruby:2.4' && always()
continue-on-error: true

- run: bundle exec rubocop
timeout-minutes: 1
continue-on-error: ${{ matrix.allow_failures == 'true' }}

- run: bundle exec rubydoctest README.md
timeout-minutes: 1
- name: Run lint
run: |
set -xe
bundle exec rubocop
bundle exec rubydoctest README.md
continue-on-error: ${{ matrix.allow_failures == 'true' }}

- name: Slack Notification (not success)
Expand Down