We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d710fa8 commit 06cd252Copy full SHA for 06cd252
.github/workflows/build.yml
@@ -138,7 +138,12 @@ jobs:
138
- name: Run RSpec
139
if: ${{ always() }}
140
run: |
141
- docker compose exec -e RAILS_ENV=test app rspec --format progress --format html --out artifacts/rspec.html
+ docker compose exec app rspec --format progress --format html --out artifacts/rspec.html
142
+
143
+ - name: Run Rubocop
144
+ if: ${{ always() }}
145
+ run: |
146
+ docker compose exec app rubocop --format progress --format html --out artifacts/rubocop.html
147
148
- name: Copy out artifacts
149
0 commit comments