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 2fc6f59 commit 3fe5408Copy full SHA for 3fe5408
1 file changed
.github/workflows/build.yml
@@ -23,6 +23,7 @@ jobs:
23
env:
24
COMPOSE_FILE: docker-compose.yml:docker-compose.ci.yml
25
DOCKER_APP_IMAGE: ${{ needs.docker-build.outputs.image }}
26
+ RUN_TESTS: "false"
27
steps:
28
- name: Checkout code
29
uses: actions/checkout@v6
@@ -45,7 +46,7 @@ jobs:
45
46
docker compose exec -u root app chown -R geodata:geodata artifacts
47
48
- name: Run RSpec
- if: ${{ always() }}
49
+ if: ${{ always() && env.RUN_TESTS == 'true' }}
50
run: |
51
docker compose exec -e RAILS_ENV=test app rspec --format progress --format html --out artifacts/rspec.html
52
0 commit comments