Skip to content

Commit

Permalink
CI: Build gems with strict and verbose mode
Browse files Browse the repository at this point in the history
That's our new pattern that we already use in other gems.
  • Loading branch information
bastelfreak committed Feb 14, 2024
1 parent 0f09718 commit cc122ca
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- name: Build gem
run: gem build *.gemspec
- name: Publish gem to rubygems.org
run: gem push *.gem
run: gem build --strict --verbose *.gemspec
env:
GEM_HOST_API_KEY: '${{ secrets.RUBYGEMS_AUTH_TOKEN }}'
- name: Setup GitHub packages access
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
- name: spec tests
run: bundle exec rake test
- name: Build gem
run: gem build *.gemspec
run: gem build --strict --verbose *.gemspec

tests:
needs:
Expand Down

0 comments on commit cc122ca

Please sign in to comment.