Skip to content

Commit 7b24db1

Browse files
committed
.
1 parent 776038f commit 7b24db1

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -133,13 +133,13 @@ jobs:
133133
docker compose build --quiet
134134
docker compose pull --quiet
135135
docker compose up --wait
136-
docker compose exec app rails assets:precompile db:migrate
136+
docker compose exec app rails assets:precompile
137137
docker compose exec -u root app chown -R nara:nara artifacts
138138
139139
- name: Run RSpec
140140
if: ${{ always() }}
141141
run: |
142-
docker compose exec -e RAILS_ENV=test app rspec --format progress --format html --out artifacts/rspec.html
142+
docker compose exec -e RAILS_ENV=test app rake check
143143
144144
- name: Run Rubocop
145145
if: ${{ always() }}

.rspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
--require spec_helper
22
--format progress
3-
--format RspecJunitFormatter
4-
--out artifacts/rspec/specs.xml
3+
--format html
4+
--out artifacts/rspec.html

0 commit comments

Comments
 (0)