Skip to content

Commit 9ace261

Browse files
committed
temporially remove running rubocop
1 parent 3fe5408 commit 9ace261

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

.github/workflows/build.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ jobs:
2424
COMPOSE_FILE: docker-compose.yml:docker-compose.ci.yml
2525
DOCKER_APP_IMAGE: ${{ needs.docker-build.outputs.image }}
2626
RUN_TESTS: "false"
27+
RUN_RUBOCOP: "false"
2728
steps:
2829
- name: Checkout code
2930
uses: actions/checkout@v6
@@ -51,7 +52,7 @@ jobs:
5152
docker compose exec -e RAILS_ENV=test app rspec --format progress --format html --out artifacts/rspec.html
5253
5354
- name: Run Rubocop
54-
if: ${{ always() }}
55+
if: ${{ always() && env.RUN_RUBOCOP == 'true' }}
5556
run: |
5657
docker compose exec -e RAILS_ENV=test app rubocop --format progress --format html --out artifacts/rubocop.html
5758

0 commit comments

Comments
 (0)