Skip to content

Commit 12ca063

Browse files
author
David Zuckerman
committed
removed --out arguments from rake
1 parent a7df775 commit 12ca063

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -139,25 +139,25 @@ jobs:
139139
- name: Run RSpec
140140
if: ${{ always() }}
141141
run: |
142-
docker compose exec -e RAILS_ENV=test app rake check --out artifacts/rspec.html
142+
docker compose exec -e RAILS_ENV=test app rake check
143143
144144
- name: Run Rubocop
145145
if: ${{ always() }}
146146
run: |
147147
#docker compose exec -e RAILS_ENV=test app rake rubocop --format progress --format html --out artifacts/rubocop.html
148-
docker compose exec -e RAILS_ENV=test app rake rubocop --out artifacts/rubocop.html
148+
docker compose exec -e RAILS_ENV=test app rake rubocop
149149
150150
- name: Run Brakeman
151151
if: ${{ always() }}
152152
run: |
153153
#docker compose exec -e RAILS_ENV=test app rake brakeman --format progress --format html --out artifacts/brakeman.html
154-
docker compose exec -e RAILS_ENV=test app rake brakeman --out artifacts/brakeman.html
154+
docker compose exec -e RAILS_ENV=test app rake brakeman
155155
156156
- name: Run ESLint
157157
if: ${{ always() }}
158158
run: |
159159
# docker compose exec -e RAILS_ENV=test app rake bundle:audit --format progress --format html --out artifacts/eslint.html
160-
docker compose exec -e RAILS_ENV=test app rake bundle:audit --out artifacts/eslint.html
160+
docker compose exec -e RAILS_ENV=test app rake bundle:audit
161161
162162
- name: Copy out artifacts
163163
if: ${{ always() }}

0 commit comments

Comments
 (0)