Skip to content

Commit 06cd252

Browse files
author
David Zuckerman
committed
adding rubocop, also removing rails env for rspec since rails is not used
1 parent d710fa8 commit 06cd252

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/build.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,12 @@ jobs:
138138
- name: Run RSpec
139139
if: ${{ always() }}
140140
run: |
141-
docker compose exec -e RAILS_ENV=test app rspec --format progress --format html --out artifacts/rspec.html
141+
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
142147
143148
- name: Copy out artifacts
144149
if: ${{ always() }}

0 commit comments

Comments
 (0)